python char casting code example
Example 1: python convert character to integer
>>> chr(97)
'a'
>>> ord('a')
97
>>> int('1')
1
Example 2: how to tyoecast in python
example = 1.3234325
print(type(example))
>>> chr(97)
'a'
>>> ord('a')
97
>>> int('1')
1
example = 1.3234325
print(type(example))