1c='p'
2x=ord(c)
3#it will give you the ASCII value stored in x
4chr(x)
5#it will return back the character
1>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
2>>> ''.join(chr(i) for i in L)
3'hello, world'
4
1# to convert ascii code to character
2# use "chr()" function with acsii value as parameter to function
3
4
5asc = [x for x in range(65, 65+26)]
6#asc store ascii value form "A" to "Z"
7string = ""
8for i in asc:
9 string += chr(i)
10
11print(string) #converted list of ascii code to string