char to int in python code example
Example 1: python convert character to integer
>>> chr(97)
'a'
>>> ord('a')
97
>>> int('1')
1
Example 2: int to char python
charNumber = chr(30)
Example 3: python: convert variable as character
df['myvar'] = df['myvar'].astype(str)