3 lines
57 B
Python
3 lines
57 B
Python
|
|
print ord('a') # prints "97"
|
||
|
|
print chr(97) # prints "a"
|