python中的chr和ord

chr
输入int, 返回ascii

ord
输入ascii, 返回int

Code:

In [1]: ord('a')
Out[1]: 97

In [2]: chr(97)
Out[2]: 'a'

你可能感兴趣的:(python中的chr和ord)