我试图使用下面的代码,但我得到的只是我需要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"
答案 0 :(得分:3)
这是open2file.write(openfile)
。这会将您读取的文件的内容发送到打开的文件中。