我有一个简单的程序来读取和编写python中的txt文件:
import os
with open("1.txt") as infile,open("2.txt","w") as outfile:
for line in infile:
outfile.write(line)
####problem####
os.system("cp 2.txt 3.txt")
####problem####
生成的文件“2.txt”没问题,但“3.txt”为空。任何人都可以为此提供解决方案。
1.txt只包含两个词:
two
words