python 文件操作

2020-03-09  本文已影响0人  蜗牛会跑步

读写文件通常包含以下操作:

a、读取整个文件内容

# 打开文件
files = open(r"C:\Users\zhuji\Desktop\python\.vscode\filetest.txt",encoding='utf-8')
# 修改文件内容
text=files.read()
print(text)
# 关闭文件
files.close()
这是一个测试文件
用来测试python的文件操作
存储为txt格式

b、按行读取文件

# 打开文件
files = open(r"C:\Users\zhuji\Desktop\python\.vscode\filetest.txt",encoding='utf-8')
# 修改文件内容
while True:
    text=files.read()
    if not text:
        break
    print(text)
# 关闭文件
files.close()
这是一个测试文件
用来测试python的文件操作
存储为txt格式

c、复制文件

# 打开文件
files1 = open(r"C:\Users\zhuji\Desktop\python\.vscode\filetest.txt",encoding='utf-8')
files2= open(r"C:\Users\zhuji\Desktop\python\.vscode\filetest[复件].txt",'w',encoding='utf-8')
# 修改文件内容
while True:
    text=files1.read()
    if not text:
        break
    files2.write(text)
# 关闭文件
files1.close()
files2.close()
result.png
上一篇 下一篇

猜你喜欢

热点阅读