1.ord函数可以将字符转化为ASCII码
2.chr函数可以将0-255中的任一整数转化为字符
print(ord("x")) print(ord("a")) print(chr(97)) print(chr(98))