我能够创建和写入临时文件,但是在读取文件时行是空的。我确认临时文件有内容。这是我的代码。谢谢
import tempfile
temp = tempfile.NamedTemporaryFile()
with open("~/somefile.txt") as inf:
for line in inf:
if line==line.lstrip():
temp.write(line)
line = str(temp.readline()).strip()
print line #nothing