编写程序,Python读写文本文件
时间: 2023-07-02 21:11:18 浏览: 110
读取文本文件:
```python
# 打开文件
with open("file.txt", "r") as file:
# 读取文件内容
content = file.read()
# 输出文件内容
print(content)
```
写入文本文件:
```python
# 打开文件
with open("file.txt", "w") as file:
# 写入文件内容
file.write("Hello, World!")
```
在写入文件时,如果文件不存在,则会创建该文件。如果文件已存在,则会覆盖原有内容。如果想在文件末尾追加内容,可以使用 "a" 模式打开文件。
阅读全文