笨方法学python(5)加分题
这篇对应的是习题17,更多文件操作
# -*- coding: utf-8 -*- #对文件更多操作复制A文件的内容到B文件 #from sys import argv from os.path import exists prompt = "> " from_file = raw_input("please input the filename where you want to copy from: >") #in_file = open(from_file) #打开文件,不带参数,说明默认是读的方式 #indata = in_file.read() #读文件里面的数据,用indata存放 #indata = open(from_file).read() 上面两句可以写成一句 #print "The input file is %d bytes long" %len(indata) #这句是计算出文件的大小 to_file = raw_input("Please input the tagetfilename where you want to copy to: > ") print "Now,copy the filename…………" #out_file = open(to_file,‘w‘) #打开文件,带‘w‘ 表明以写的方式打开 #out_file.write(indata) #把indata里面的数据,写进去 #open(to_file,‘w‘).write(indata) #上面两句,可以写成这一句 open(to_file,‘w‘).write(open(from_file).read()) #这行是7 8 13 14行的合成一行的写法 print "Alrigh,all done" #out_file.close() #in_file.close()
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。