python 将筛选后的信息写入excel
时间: 2023-05-15 13:04:45 浏览: 110
python将数据写入excel
5星 · 资源好评率100%
可以使用 pandas 库来实现将筛选后的信息写入 excel,具体代码如下:
```python
import pandas as pd
# 假设筛选后的信息存储在 DataFrame 对象 df 中
df = ...
# 将 df 写入 excel 文件
df.to_excel('output.xlsx', index=False)
```
其中,`to_excel` 方法将 DataFrame 对象写入 excel 文件,`index=False` 表示不将行索引写入文件。
阅读全文