RosettaCodeData/Task/Character-codes/Python/character-codes-1.py

3 lines
57 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
print ord('a') # prints "97"
print chr(97) # prints "a"