python从","rows":"读取txt读取txt
时间: 2023-04-01 22:00:29 浏览: 80
python对Excel的读取的示例代码
可以使用Python的open函数打开txt文件,然后使用readlines方法读取每一行的内容,再使用split方法以逗号为分隔符将每一行的内容分割成一个列表。具体代码如下:
```python
with open('file.txt', 'r') as f:
lines = f.readlines()
for line in lines:
row = line.strip().split(',')
print(row)
```
其中,'file.txt'是要读取的txt文件名,strip方法用于去除每行末尾的换行符。
阅读全文