Python 内建函数
返回表示字符 "E" 的整数:
x = ord("E")
x = ord("E") print(x)
ord() 函数返回表示指定字符 unicode 编码的数字。
ord(character)
参考手册:chr() 函数(通过 chr() 函数转换回字符)