【发布时间】:2011-12-13 05:12:11
【问题描述】:
我不知道为什么我的代码在将文本写入文件之前会打印一个空行。我正在做的是从一个压缩文件夹中读取两个文件并将文本写入一个新的文本文件。我在文件中得到了预期的结果,除了文件的第一行有一个空行。
def test():
if zipfile.is_zipfile(r'C:\Users\test\Desktop\Zip_file.zip'):
zf = zipfile.ZipFile(r'C:\Users\test\Desktop\Zip_file.zip')
for filename in zf.namelist():
with zf.open(filename, 'r') as f:
words = io.TextIOWrapper(f)
new_file = io.open(r'C:\Users\test\Desktop\new_file.txt', 'a')
for line in words:
new_file.write(line)
new_file.write('\n')
else:
pass
zf.close()
words.close()
f.close()
new_file.close()
new_file 中的输出(在第一个“This is a test line...”之前有一个空行)
This is a test line...
This is a test line...
this is test #2
this is test #2
有什么想法吗?
谢谢!
【问题讨论】: