使用python,输入一个字符串,将该字符串转换成数字序列(对应的unicode码)输出。
时间: 2023-08-31 12:10:25 浏览: 212
Python字符串详细介绍
可以使用Python内置的ord()函数将字符转换为对应的Unicode码,然后将每个字符的Unicode码存储在一个列表中。
示例代码如下:
```python
string = input("请输入字符串:") # 输入字符串
unicode_list = [] # 创建一个空列表用于存储Unicode码
# 循环遍历字符串,将每个字符的Unicode码添加到列表中
for char in string:
unicode_list.append(ord(char))
print(unicode_list) # 输出Unicode码列表
```
示例输出:
```
请输入字符串:hello
[104, 101, 108, 108, 111]
```
其中,输入的字符串为"hello",对应的Unicode码序列为[104, 101, 108, 108, 111]。
阅读全文