31 文件复制
Posted abel2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了31 文件复制相关的知识,希望对你有一定的参考价值。
# #打开文件 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 文件复制的主要内容,如果未能解决你的问题,请参考以下文章