嘿,伙计们真的很困惑如何解决这个问题,尝试四处寻找。我想将选定的列保存在新的 Excel 文件中。任何帮助表示赞赏!import pandas as pdimport numpy as npdata = pd.read_excel('C:\\Users\\me\\Downloads\\Reconcile.xlsx')data[['batched_at', 'batch_id', 'total', 'customer_firstname', 'customer_lastname']]data.to_excel('C:\\Users\\me\\Downloads\\Newfile.xlsx')
1 回答
繁星coding
TA贡献1797条经验 获得超4个赞
第三行在这里不执行任何操作,将其分配给一个新的数据帧并保存该数据帧。
import pandas as pd
import numpy as np
data = pd.read_excel('C:\\Users\\me\\Downloads\\Reconcile.xlsx')
new_data = data[['batched_at', 'batch_id', 'total', 'customer_firstname', 'customer_lastname']]
new_data.to_excel('C:\\Users\\me\\Downloads\\Newfile.xlsx')
添加回答
举报
0/150
提交
取消