Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. chr: ! " # $ % & ' ( ) * + , - . /
  2. asc: 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  3. chr: 0 1 2 3 4 5 6 7 8 9 : ; < = > ?
  4. asc: 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
  5.  
  6. for asc in range(32,64):
  7. print(chr(asc),end = ' ')
  8. print(ord(chr(asc)),end = ' ')
  9.  
  10. for asc in range(32,64):
  11. print(chr(asc),'n',end = ' ')
  12. print(ord(chr(asc)),end = ' ')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement