有两个内置函数,记得以前在《Python Cookbook》里看到过。
>>>print ord('a') 97>>>print chr(97) a
>>>print ord('a')
>>>print chr(97)
相关文章: