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