如何在Python中写入文本文件?
时间: 2024-03-28 17:31:51 浏览: 64
【文本文件写入】Python
5星 · 资源好评率100%
以下是两种在Python中写入文本文件的方法:
1. 使用pandas库将数据写入csv文件
```python
import pandas as pd
# 创建一个DataFrame
data = {'name': ['Tom', 'Jerry', 'Mike'], 'age': [20, 21, 22]}
df = pd.DataFrame(data)
# 将DataFrame写入csv文件
df.to_csv('file.txt', header=False, index=True, mode='a')
```
2. 使用json库将字典写入文本文件
```python
import json
# 创建一个字典
mydict = {'name': 'Tom', 'age': 20}
# 将字典写入文本文件
with open('file.txt', 'w') as file:
file.write(json.dumps(mydict, ensure_ascii=False))
```
阅读全文