charNumber = chr(30)
output = chr(99) print(output) # c output = str(5) print(output) # 5
>>> chr(65) 'A'
print(ord('a')) #Output 97