Advertisement
here2share

# chr_33_onward.py

Apr 8th, 2018
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. # chr_33_onward.py
  2.  
  3. z=33
  4. while 1:
  5.     try:
  6.         print z, chr(z), '\t',
  7.     except:
  8.         break
  9.     z+=1
  10. #
  11. print
  12. print
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement