python的ord
时间: 2023-11-16 18:51:31 浏览: 55
hcldirgit#studygit#15.Python ord 函数1
ord() 函数是 Python 内置函数之一,用于返回一个字符的 Unicode 数值。它的语法如下:
```python
ord(character)
```
其中,`character` 参数是一个字符,可以是字母、数字、符号等。该函数会返回对应字符的 Unicode 数值。
下面是一个示例:
```python
print(ord('A')) # 输出:65
print(ord('中')) # 输出:20013
```
第一个示例中,字符 'A' 的 Unicode 数值为 65。第二个示例中,字符 '中' 的 Unicode 数值为 20013。
阅读全文