python的list如何将空格作为分隔符
时间: 2023-08-18 21:08:33 浏览: 593
python 将list转成字符串,中间用符号分隔的方法
你可以使用字符串的 `split()` 方法将字符串按照空格分割成一个列表。例如:
```python
my_string = "Hello world, this is a string."
my_list = my_string.split() # 使用空格作为分隔符
print(my_list)
```
输出结果为:
```
['Hello', 'world,', 'this', 'is', 'a', 'string.']
```
如果你想使用其他字符作为分隔符,可以在 `split()` 方法中传入一个参数,例如:
```python
my_string = "apple,banana,orange,grape"
my_list = my_string.split(",") # 使用逗号作为分隔符
print(my_list)
```
输出结果为:
```
['apple', 'banana', 'orange', 'grape']
```
阅读全文