pandas写入单元格数据
时间: 2023-06-06 18:04:24 浏览: 649
将pandas.dataframe的数据写入到文件中的方法
好的,我可以回答这个问题。你可以使用 Pandas 的 loc 方法直接定位到要修改的单元格,然后赋值即可。例如:
```
import pandas as pd
df = pd.read_excel('example.xlsx')
# 定位到第2行第3列的单元格,将其修改为 'hello'
df.loc[2, 'column_name'] = 'hello'
# 将修改后的数据写入到原文件
df.to_excel('example.xlsx', index=False)
```
其中,`column_name` 是要修改的列的名称。
阅读全文