基本上,我有一个test.txt
文件,我的目标是
我知道我可以将文件存储在列表中,但是我正在寻找一种使用迭代器的方法。
我尝试过
with open("test.txt", "r") as f:
for line in f:
print(line) #Use the line in some way (example purposes)
# del line (looking for something like this maybe)
从逻辑上讲,这是无效的,因为我没有写入文件。使用迭代器在Python中完成此操作的最佳方法是什么?