convert decimal to ascii in python code example
Example 1: int to ascii python
# converting intefer to ascii number
# declaring variable
i = 3
ord(str(i)) # output --> 51
Example 2: ascii to decimal python
>>> ord('a')
97
>>> chr(98)
'b'
# converting intefer to ascii number
# declaring variable
i = 3
ord(str(i)) # output --> 51
>>> ord('a')
97
>>> chr(98)
'b'