python转换ASCII码
时间: 2023-07-28 12:15:41 浏览: 93
python中ASCII码字符与int之间的转换方法
5星 · 资源好评率100%
可以使用内置函数 `ord()` 将一个字符转换成对应的 ASCII 码。例如:
```python
char = 'A'
ascii_code = ord(char)
print(ascii_code) # 输出65
```
如果需要将一个字符串中的每个字符都转换成其对应的 ASCII 码,可以使用循环遍历字符串中的每个字符并调用 `ord()` 函数。例如:
```python
string = 'Hello, world!'
for char in string:
ascii_code = ord(char)
print(ascii_code)
```
输出:
```
72
101
108
108
111
44
32
119
111
114
108
100
33
```
阅读全文