python读取txt文件每一行,空格区分列
时间: 2023-06-06 07:09:05 浏览: 416
详解Python yaml模块
这个问题是关于编程的基础知识,我可以回答。在Python中,可以使用open()打开文件并逐行读取文件内容,使用strip()方法去掉每行末尾的换行符,使用split()方法按空格分割每行内容,最后得到一个包含所有列的列表。具体代码示例如下:
```
with open('file.txt', 'r') as f:
for line in f:
columns = line.strip().split()
# do something with columns
```
注意,这里的 `file.txt` 是要读取的文件名,需要根据实际情况进行修改。
阅读全文