程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

如何用python讀取excel單元中的值

編輯:Python

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

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved