convert ascii to char python code example

Example 1: python ascii

>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
>>>

Example 2: how to write the character from its ascii value in python

c='p'
x=ord(c)
#it will give you the ASCII value stored in x
chr(x)
#it will return back the character

Example 3: get char from ascii value python

>>> chr(104)
'h'
>>> chr(97)
'a'
>>> chr(94)
'^'

Example 4: convert number to char python

>>> chr(65)
'A'

Example 5: python ascii code to string

>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
>>> ''.join(chr(i) for i in L)
'hello, world'

Example 6: python convert ascii to char

>>> ord('h')
104
>>> ord('a')
97
>>> ord('^')
94