Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 95 Bytes

notes.md

File metadata and controls

11 lines (9 loc) · 95 Bytes

Arrays and hashing

>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'