python怎么读写txt
如何用 python 读写 txt 文件?读取 txt 文件:导入库:import os打开文件:with open("text.txt", "r") as f: content = f.read()写入 txt 文件:导入库:import os创建文件:if not os.path.exists("text.txt"): open("text.txt", "w").close()打开文件:with open("text.txt", "w") as f: f.write("内容")
如何用 Python 读写 TXT 文件
读取 TXT 文件
导入 Python 库:
import os
打开文件:
with open("text.txt", "r") as f: content = f.read()
写入 TXT 文件
导入 Python 库:
import os
创建一个要写入的文件,如果不存在:
if not os.path.exists("text.txt"): open("text.txt", "w").close()
打开文件:
with open("text.txt", "w") as f: f.write("这是要写入的文件内容。")
以上就是python怎么读写txt的详细内容,更多请关注php中文网其它相关文章!