帮我写一段能够读写文件的python代码
时间: 2023-08-28 13:48:10 浏览: 88
当然可以!下面是一个简单的Python代码示例,可以用来读取和写入文件:
```python
# 读取文件
def read_file(file_path):
try:
with open(file_path, 'r') as file:
content = file.read()
return content
except FileNotFoundError:
print("文件不存在")
return None
except:
print("读取文件时出错")
return None
# 写入文件
def write_file(file_path, content):
try:
with open(file_path, 'w') as file:
file.write(content)
print("写入成功")
except:
print("写入文件时出错")
# 测试读取文件
file_content = read_file("example.txt")
if file_content:
print("文件内容:", file_content)
# 测试写入文件
write_file("example.txt", "这是新的内容")
```
这段代码定义了两个函数:`read_file`用于读取文件内容,`write_file`用于写入文件内容。你可以根据自己的需要调用这两个函数,并传入相应的文件路径和内容。注意,这只是一个简单示例,你可以根据实际需求进行扩展和改进。
阅读全文