Python操作Excel表格
1.xlrd库:
在python中,xlrd库是一个很常用的读取excel文件的库,其对excel文件的读取可以实现比较精细的控制。
2.下载xlrd库
(1)方法一:可以在cmd中使用pip下载
pip install xlrd
通过下面命令看看是否下载成功
pip list
(2)方法二:pycharm进行下载库,输入代码,xlrd下面有小红线,鼠标选中按照提示进行下载
3.相关介绍
import xlrd
wb=xlrd.open_workbook("Excel的路径")
sheet_num=wb.nsheets
sheet_names=wb.sheet_names()
sheet=wb.sheet_by_index(0)
rows=sheet.nrows
columns=sheet.ncols
row_data=sheet.row_values(0)
col_data=sheet.col_values(1)
one_data=sheet.cell(row_index,col_index)
cell_value=one_data.value
cell_type=one_data.ctype
0 -- 空(empty)
1 -- 字符串(string)
2 -- 数字(number)
3 -- date(日期)
4 -- boolean(布尔值)
5 -- error(错误)