how to convert character into ascii value in python code example
Example 1: python ascii
>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
>>>
Example 2: string to ascii value python
>>> s = 'hi'
>>> [ord(c) for c in s]
[104, 105]
Example 3: get char from ascii value python
>>> chr(104)
'h'
>>> chr(97)
'a'
>>> chr(94)
'^'
Example 4: ascii values in python of
c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))