【发布时间】:2020-05-23 06:29:21
【问题描述】:
import pandas as pd
xl_dict = {}
sheetname_list = ['2018', '2019', '2020']
#i am able to get the sheets from here
for sheet in sheetname_list:
xl_dict[sheet] = pd.read_excel('Mvvvv Ds.xlsx', sheet_name=sheet)
print(xl_dict[sheet].title)
无法在此文件中添加工作表,我想添加以将这三个工作表添加到此文件中。
path2 = '2020-01-29.xlsx'
【问题讨论】:
标签: python excel python-3.x pandas xlsx