python 将多行文本变成列表
时间: 2023-07-28 12:10:48 浏览: 101
python中列表的用法
5星 · 资源好评率100%
你可以使用 Python 的 `split()` 方法将多行文本拆分成列表,示例如下:
```python
# 多行文本
text = """apple
banana
orange
grape
"""
# 使用 split() 方法拆分成列表
lst = text.split()
print(lst)
```
输出结果:
```
['apple', 'banana', 'orange', 'grape']
```
如果你的文本是以其他符号(如逗号、分号等)分隔的,你可以在 `split()` 方法中传入相应的分隔符,示例如下:
```python
# 多行文本
text = "apple,banana,orange,grape"
# 使用逗号分隔,拆分成列表
lst = text.split(",")
print(lst)
```
输出结果:
```
['apple', 'banana', 'orange', 'grape']
```
阅读全文