首页 > 代码库 > 笨方法学python(5)加分题

笨方法学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 = http://www.mamicode.com/in_file.read()  #读文件里面的数据,用indata存放>