python的ord函数
时间: 2023-11-27 11:55:26 浏览: 64
hcldirgit#studygit#15.Python ord 函数1
Python的`ord()`函数用于返回一个字符的Unicode编码值。具体用法如下:
```python
ord('a') # 输出 97
ord('中') # 输出 20013
```
函数参数是一个字符,它返回该字符的Unicode编码值。如果该字符不是ASCII字符,则返回Unicode编码值。
阅读全文
hcldirgit#studygit#15.Python ord 函数1