conert ascii number to char python code example
Example 1: python int to char
output = chr(99)
print(output)
# c
output = str(5)
print(output)
# 5
Example 2: python convert ascii to char
>>> ord('h')
104
>>> ord('a')
97
>>> ord('^')
94
output = chr(99)
print(output)
# c
output = str(5)
print(output)
# 5
>>> ord('h')
104
>>> ord('a')
97
>>> ord('^')
94