尝试在Python中从一个文本文件复制到另一个文本文件

时间:2015-07-22 17:59:35

标签: python file

我试图使用下面的代码,但我得到的只是我需要1个参数,但我给了0。

print "Copy one file into another:"

print "Type first file here:" 

file1 = raw_input('>')

openfile = open(file1).read()

file2 = raw_input('>')

open2file = open(file2, 'w')
second = open2file.write() 


print "All Done"

1 个答案:

答案 0 :(得分:3)

这是open2file.write(openfile)。这会将您读取的文件的内容发送到打开的文件中。