arkts 读写文件
时间: 2023-11-19 10:57:18 浏览: 244
以下是Python中读写文件的方法:
1. 读取文件
```python
# 打开文件
file = open('filename.txt', 'r')
# 读取文件内容
content = file.read()
# 关闭文件
file.close()
```
2. 写入文件
```python
# 打开文件
file = open('filename.txt', 'w')
# 写入文件内容
file.write('Hello, world!')
# 关闭文件
file.close()
```
3. 追加文件
```python
# 打开文件
file = open('filename.txt', 'a')
# 追加文件内容
file.write('Hello, world!')
# 关闭文件
file.close()
```
阅读全文