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 文件复制的主要内容,如果未能解决你的问题,请参考以下文章

vue —— VSCode代码片段

这两个代码片段之间有区别吗?如果有,那又如何? [复制]

Prometheus配置文件

什么是在 C++ 中获取总内核数量的跨平台代码片段? [复制]

Android:使用支持片段管理器时复制片段

如何将 r ggplot 图存储为 html 代码片段