python中xlwings是什么?
日常生活中必不可少的數(shù)據(jù)處理軟件就是excel,只要在電腦上辦公的小伙伴,就不可能沒用到過該數(shù)據(jù)處理軟件,其實,在我們正在學(xué)習python中,也有可以操作excel的庫,這就是本期要給大家?guī)淼膞lwings庫,能夠幫助我們實現(xiàn)調(diào)用excel中寫好的內(nèi)容,看到這里,大家一定很感興趣實現(xiàn)方式吧,那么下面,就來詳細了解下吧。
xlwings安裝:
pipinstallxlwings
xlwings導(dǎo)入:
importxlwingsasxw
實例用法:
xlwings與numpy、pandas、matplotlib結(jié)合使用
1、支持寫入numpyarray數(shù)據(jù)類型
importnumpyasnp
np_data=np.array((1,2,3))
sht.range('F1').value=np_data
2、支持將pandasDataFrame數(shù)據(jù)類型寫入excel
importpandasaspd
df=pd.DataFrame([[1,2],[3,4]],columns=['a','b'])
sht.range('A5').value=df
3、將數(shù)據(jù)讀取,輸出類型為DataFrame。
sht.range('A5').options(pd.DataFrame,expand='table').value
從上面的實例操作中,我們也可以獲悉xlwings可以很好的與pandas、numpy、matplotlib結(jié)合使用,大家對數(shù)據(jù)要進行分析的話,可以調(diào)用哦~更多Python學(xué)習教程請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。