xls = pd.ExcelFile(‘월별매출데이터.xlsx’)
sn = xls.sheet_names
for i,snl in list(zip(range(1,13),sn)):
df+str(i) = pd.read_excel(‘월별매출데이터.xlsx’,sheet_name=snl, skiprows=range(6))
SyntaxError: cannot assign to operator
i want to result as :
df1 = read_excel , list1…
df2 = read_excel… list2… whats the erroe type ,