当前分类:python>>正文

Python读写文件:实现数据存储与读取

来源:互联网   更新时间:2023年7月7日  

Python 笔记

一、文件读取

# 打开文件
f = open('test.txt', 'r')

# 读取文件内容
content = f.read()

# 输出文件内容
print(content)

# 关闭文件
f.close()

二、文件写入

# 打开文件
f = open('test_write.txt', 'w')

# 写入文件内容
f.write('Hello, World!')

# 关闭文件
f.close()

三、with语句

# 使用with语句打开文件
with open('test_with.txt', 'w') as f:
    f.write('Hello, World!')

四、文件追加

# 打开文件并进行追加操作
with open('test_append.txt', 'a') as f:
    f.write('Hello, World Again!')

五、总结

本文固定链接:https://6yhj.com/leku-p-4700.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 网购