5.18-笨办法学python-习题17(文件拷贝)

from sys import argv
from os.path import exists
#又import了一个命令exists,这个命令将文件名字符串作为参数,如果文件存在返回TRUE,否则返回FALSE

script,from_file,to_file=argv
#传参,不过没有管exists哎

print("copying from %s to %s "%(from_file,to_file))
#打印copying from "from_file"to "to_file"

get=open(from_file)
#打开“from_file”并传递给对象get
indata=get.read()
#读文件然后传给indata

print("the input file is %d bytes long"%len(indata))
#打印the input file is “一个数字”bytes long
print("does the output file exist?%r"%exists(to_file))
#打印does the output file exist?+true/false(有就是true)
print("ready,hit RETURN to continue ,CTRL-C to abort.")
#打印ready,hit RETURN to continue ,CTRL-C to abort.
input('<')
#一个提示符
output=open(to_file,'w')
#以只写的模式打开“to_file”
output.write(indata)
#把indata里的内容(from_file)写进output(to_file)

print("alright,all done")
#打印alright,all done
output.close()
#关闭output
get.close()
#关闭get
copied=open("copied.txt")
print(copied.read())
#查看文件咯

 

转载于:https://www.cnblogs.com/daxixixixi/p/9055686.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值