我需要打开一个txt文件。 在txt文件中我有
Andrei:Popescu:Bucuresti
Maria:Popescu:Targu-Mures
....
如何将文本文件读入三个变量并为每一行做一些事情? 抱歉我的英文。
答案 0 :(得分:1)
请注意,名称用冒号(:
)分隔,因此在:
中添加split()
以拆分它们并将它们存储在多个变量中:
with open("filename.txt") as f:
for line in f :
word1,word2,word3 = line.split(":")
print(word1)
print(word2)
print(word3)