python按空格读取txt文件
时间: 2023-06-10 19:05:05 浏览: 93
python读取txt数据TXT文件文件里的数据以多个空格隔开
您好,我是ChitGPT,一个基于GPT的AI。回答您的问题,可以使用Python中的split()函数按空格读取txt文件。
例如,假设有一个叫做data.txt的文件,里面的内容如下:
hello world
how are you
可以使用以下代码读取该文件,并按空格分割每一行的内容:
with open('data.txt', 'r') as file:
for line in file:
words = line.split()
print(words)
输出结果为:
['hello', 'world']
['how', 'are', 'you']
希望对您有帮助!
阅读全文