# This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # # Interactive Test 065 # Tests plat module's putb and getb functions # import sys #x = "failure\n" #x = ["f","a","i","l","u","r","e","\n"] def plusOne(a): return chr(ord(a)+1) #sys.puts(plusOne("a")) #sys.puts("\n") #sys.puts(map(plusOne,x)) sys.puts(map(plusOne,["a"])) sys.puts("\n")
# modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # # Interactive Test 065 # Tests plat module's putb and getb functions # import sys sys.puts("Type a letter: ") c = sys.getb() sys.puts("Echo: ") sys.putb(c) sys.putb(c+1) sys.putb(c+2) sys.putb(ord("\n"))
# modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # # Interactive Test 065 # Tests plat module's putb and getb functions # import sys sys.puts("Type a letter: ") c = sys.getb() sys.puts("Echo: ") sys.putb(c) sys.putb(c + 1) sys.putb(c + 2) sys.putb(ord("\n"))
# Tests plat module's putb and getb functions # import sys #sys.puts("Type a letter: ") #c = sys.getb() #sys.puts("Echo: ") #sys.putb(c) #sys.putb(c+1) #sys.putb(c+2) #sys.putb(ord("\n")) sys.puts("attemping to output a range\n") #r = range(7) #r is a list sys.puts("...1\n") #l = len(r) sys.puts("...2\n") #c = chr(l) sys.puts("...3\n") #sys.putb(c) sys.puts("...4\n") sys.puts("\ndone\n")