用Python写一个读写txt的代码
时间: 2024-02-21 09:58:45 浏览: 164
阅读txt的python脚本
可以使用 Python 的内置函数 open() 来读写 txt 文件。
读取 txt 文件的代码:
```python
with open('file.txt', 'r') as f:
content = f.read()
print(content)
```
其中,'file.txt' 是要读取的 txt 文件名,'r' 表示以只读模式打开文件,with 语句会自动关闭文件。
写入 txt 文件的代码:
```python
with open('file.txt', 'w') as f:
f.write('Hello World!')
```
其中,'file.txt' 是要写入的 txt 文件名,'w' 表示以写入模式打开文件,with 语句会自动关闭文件,f.write('Hello World!') 表示写入文本内容。
当然,也可以使用其他 Python 库来读写 txt 文件,比如 pandas 库的 read_csv() 和 to_csv() 函数,不过需要提前安装并导入相应的库。
阅读全文