Python使用Excel將數據寫入多個sheet

將一個列表數據寫入output.xlsx的a,b,c……等sheet中 import pandas as pd df1 = pd.DataFrame({'a':[3,1],'b':[4,3]}) df2 = df1.copy() with pd.ExcelWriter('F:\\python入門\\數據2\\output.xlsx') as writer: str1 = ['a','b','c',
相關文章
相關標籤/搜索