由于某种原因,在我的 for 循环之后,我无法读取输出文本文件。例如 :
for line in a:
name = (x)
f = open('name','w')
for line in b:
get = (something)
f.write(get)
for line in c:
get2 = (something2)
f.write(get2)
(the below works if the above is commented out only)
f1 = open(name, 'r')
for line in f1:
print line
如果我注释掉循环,我就可以读取文件并打印内容。
我对编码非常陌生,并且猜测这是我所缺少的显而易见的东西。但是我似乎无法弄清楚。我用过谷歌,但我读得越多,我就越觉得我错过了一些东西。任何建议表示赞赏。