python ord
时间: 2023-08-18 20:13:22 浏览: 113
ord.py
`ord()` 是一个 Python 内置函数,用于返回给定字符的 Unicode 数值。它接受一个字符串(只能包含一个字符)作为参数,并返回对应字符的 Unicode 数值。下面是一个示例:
```python
character = 'A'
unicode_value = ord(character)
print(unicode_value)
```
这个示例将输出 65,因为大写字母 A 的 Unicode 编码为 65。
阅读全文