string 转 list
时间: 2023-11-24 12:51:27 浏览: 63
以下是两种将字符串转换为列表的方法:
1.使用split()方法将字符串拆分为列表元素:
```python
string = "hello world"
lst = string.split()
print(lst) # 输出:['hello', 'world']
```
2.使用list()函数将字符串转换为字符列表:
```python
string = "hello world"
lst = list(string)
print(lst) # 输出:['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
```
阅读全文