from sys import argv
from os.path import exists
script, from_file, to_file = argv
print ("Copying from %s to %s" % (from_file, to_file))
# we could do these two on one line too, how?
#打开第一个文件
input = open(from_file)
#输入文件读出的内容
indata = input.read()
print ("The input file is %d bytes long" % len(indata))
print ("Does the output file exist? %r" % exists(to_file))
print ("Ready, hit RETURN to continue, CTRL-C to abort.")
#以写的形式打开第二个文件
output = open(to_file, 'w')
output.write(indata) #写入indata读出的内容
print ("Alright, all done.")
output.close()
input.close()
笨方法学python 习题17
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
相关阅读更多精彩内容
- 一、作业内容 笨办法学 Python 习题13-17以及加分题。 二、作业代码: 运行结果如下: 结果却报错……读...
- 习题 13: 参数、解包、变量 from sys import argvscript,first,second,t...