1 先理解excel表格的結構
工作簿xls–工作表sheet–單元格cell
2 安裝xlrd包
在window環境快捷鍵win+R 輸入cmd
在cmd界面輸入 pip install xlrd==1.2.0
安裝成功界面入下
C:\Users\g>pip install xlrd==1.2.0
Defaulting to user installation because normal site-packages is not writeable
Collecting xlrd==1.2.0
Using cached xlrd-1.2.0-py2.py3-none-any.whl (103 kB)
Installing collected packages: xlrd
Successfully installed xlrd-1.2.0
3 創建一個excel工作簿,工作簿名字 新建表格
工作簿的第一個表格中輸入值 hello
python 代碼入下
import xlrd #導入xlrd包
xlsx = xlrd.open_workbook(r'D:\新建表格.xlsx') #打開工作簿 新建表格.xlsx
table = xlsx.sheet_by_index(0) #打開第一張工作表
print(table.cell_value(0,0)) #打印第1行1列的值
輸出結果
"C:\Program Files\Python37\python.exe" D:/PycharmProjects/pythonProject_excle/excel_xlrd.py
hello
Process finished with exit code 0