码迷,mamicode.com
首页 > 其他好文 > 详细

31 文件复制

时间:2020-06-13 00:09:49      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:写入文件   lin   复制   没有   打开文件   open   nbsp   创建   读取文件   

#
#打开文件
file1 = open("test2.py")   #默认只读
file2=open("test2.py.copy","w")  # w 覆盖写, a 追加,没有文件都会创建

#读取文件
text = file1.read()
#写入文件
file2.write(text)


#关闭文件
file1.close()
file2.close()

 

#
file1 = open("test2.py")
file2=open("test2.py.copy","w")

while True:
    text = file1.readline()

    if not text:
        break

    file2.write(text)

file1.close()
file2.close()

 

31 文件复制

标签:写入文件   lin   复制   没有   打开文件   open   nbsp   创建   读取文件   

原文地址:https://www.cnblogs.com/abel2020/p/13111215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!