习题17.md

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))

indata = open(from_file).read()

print("The input file is %d type long"%len(indata))
print("Does the output file exist?%r"%exists(to_file))
print("Ready,hit RETURN to continue,CTRL-C to abort")
input()

out_file = open(to_file,'w')
out_file.write(indata)

print("Alright,all done")

out_file.close()
in_file.clse()

在这里插入图片描述
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/DMU_lzq1996/article/details/82811336