如何使用 Python 查找字符的 ASCII 值?
python 中的 ord 函数提供字符(ASCII)的序数值。你可以使用此函数如下查找 ascii 码
示例
s = "Hello" for c in s: print(ord(c))
输出
这将输出
72 101 108 108 111
广告
python 中的 ord 函数提供字符(ASCII)的序数值。你可以使用此函数如下查找 ascii 码
s = "Hello" for c in s: print(ord(c))
这将输出
72 101 108 108 111