编写程序,Python读写文本文件
时间: 2023-11-19 17:13:24 浏览: 71
读取文本文件:
```python
# 打开文件
file = open("example.txt", "r")
# 读取文件内容
content = file.read()
# 输出文件内容
print(content)
# 关闭文件
file.close()
```
写入文本文件:
```python
# 打开文件
file = open("example.txt", "w")
# 写入文件内容
file.write("Hello, World!")
# 关闭文件
file.close()
```
注意:在写入文件时,如果文件已经存在,将会覆盖原有的内容。如果要在原内容的基础上追加新内容,应该使用 "a" 模式打开文件。
阅读全文