Python操作Excel
2023-12-25 本文已影响0人
87d6dc4b11a7
Working with Excel Files in Python
![](https://img.haomeiwen.com/i3868003/7de0e192b91e15a2.png)
1、xlrd xlwt
只支持 xls 格式
![](https://img.haomeiwen.com/i3868003/1a295442646562bc.png)
![](https://img.haomeiwen.com/i3868003/154eeff9905eaf39.png)
pip install xlrd
pip install xlwt
https://xlrd.readthedocs.io/en/latest/
https://xlwt.readthedocs.io/en/latest/
2、xlutils
pip install xlutils
https://xlutils.readthedocs.io/en/latest/
3、xlwings
pip install xlwings
https://docs.xlwings.org/en/latest/
4、openpyxl
pip install openpyxl
https://openpyxl.readthedocs.io/en/stable/
5、xlswriter
pip install XlsxWriter
https://xlsxwriter.readthedocs.io/
6、pandas
pip install pandas
https://pandas.pydata.org/docs/
参考:https://blog.csdn.net/lm_love_hxl/article/details/130733070