编程语言
首页 > 编程语言> > 《笨方法》学Python3 习题17

《笨方法》学Python3 习题17

作者:互联网

在做到习题21的时候,突然对前边的一些知识有点模糊,就去翻前边的知识点。看到这个题,就突然想到这样写写试试,然后发现可以达到作者的要求了。

from sys import argv
script, file1, file2 = argv

open(file2, "w").write(open(file1).read())

标签:file2,file1,17,前边,argv,习题,open,Python3
来源: https://blog.csdn.net/weixin_44828290/article/details/89035967