python读取excel
2023-09-23
更新时间:2023-09-23 00:01:47作者:佚名
python读取excel的方法是:
1、首先说明使用的python3.5,office版本是2010,首先打开dos命令窗,安装必须的两个库,命令是:pip3 install xlrd、Pip3 install xlwt。
2、准备好excel,打开pycharm,新建一个excel.py的文件,首先导入支持库import xlrdimport xlwt。
3、贴出代码,具体分析:要操作excel,首先得打开excel,使用open_workbook(“路径”)要获取行与列,使用nrows(行),ncols(列)获取具体的值,使用cell(row,col)。value。