赞
踩
- import pandas as pd
-
- # 定义数组
- data = [
- {'username': '张三', 'age': 33,'score':13},
- {'username': '李四', 'age': 44,'score':14},
- {'username': '王五', 'age': 55,'score':15},
- ]
-
- # 将数组转换为DataFrame
- df = pd.DataFrame(data)
-
- df_to_export = df[['username','age']]
-
- # 修改列名
- df_to_export.rename(columns={'username': '用户名', 'age': '年龄'}, inplace=True)
-
- # 将DataFrame写入Excel文件
- df_to_export.to_excel('用户表.xlsx', index=False)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。