写一段python 读写文件的代码
时间: 2023-12-01 17:18:03 浏览: 146
【Python】文件读写操作代码
5星 · 资源好评率100%
好的,以下是一段 Python 读写文件的代码示例:
# 打开文件并写入内容
with open('example.txt', 'w') as f:
f.write('Hello, world!')
# 打开文件并读取内容
with open('example.txt', 'r') as f:
content = f.read()
print(content)
这段代码首先使用 `open()` 函数打开一个名为 `example.txt` 的文件,并以写入模式 `'w'` 写入了字符串 `'Hello, world!'`。接着,代码又使用 `open()` 函数打开同样的文件,但这次是以读取模式 `'r'` 读取了文件中的内容。最后,代码输出了读取到的内容,即字符串 `'Hello, world!'`。
阅读全文