>>> ord('a') 97 >>> chr(98) 'b'
# converting intefer to ascii number # declaring variable i = 3 ord(str(i)) # output --> 51