Translate between Char and ASCII

Python provide build-in function to help us translate bettween Char and ASCII, for example:

>>>print ord("a")
97
>>>print chr(97)
a
原文地址:https://www.cnblogs.com/allenblogs/p/1761852.html