ord
chr

c = "A"
a = 56
print( c + " 的ASCII 码为", ord(c))
print( a , " 对应的字符为", chr(a))