python copy os.system。结果文件为空

时间:2018-02-05 13:42:04

标签: python subprocess

我有一个简单的程序来读取和编写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

0 个答案:

没有答案