用python保存数据为excel
时间: 2023-11-05 22:16:20 浏览: 154
python自动办公-16 从Excel总表中分割10个部门的年假数据
好的,我可以帮您回答这个问题。您可以使用Python中的pandas库将数据保存为Excel格式。下面是一个示例代码:
```
import pandas as pd
# 创建数据
data = {'name': ['Alice', 'Bob', 'Charlie', 'David'],
'age': [25, 30, 35, 40],
'gender': ['F', 'M', 'M', 'M']}
# 将数据转为DataFrame格式
df = pd.DataFrame(data)
# 将DataFrame保存为Excel文件
df.to_excel('data.xlsx', index=False)
```
执行以上代码后,会在您的工作目录下创建一个名为"data.xlsx"的Excel文件,其中包含了保存的数据。请注意,第二个参数"index=False"是为了避免将自动增加的行索引也保存到Excel文件中。
阅读全文