int to char python code example
Example 1: python convert character to integer
>>> chr(97)
'a'
>>> ord('a')
97
>>> int('1')
1
Example 2: python int to char
output = chr(99)
print(output)
# c
output = str(5)
print(output)
# 5
Example 3: int to char python
charNumber = chr(30)
Example 4: convert number to char python
>>> chr(65)
'A'
Example 5: python: convert variable as character
df['myvar'] = df['myvar'].astype(str)
Example 6: int ot char python
print(ord('a'))
#Output
97