python从excel中读取数据
生活随笔
收集整理的這篇文章主要介紹了
python从excel中读取数据
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
??源代碼如下:
import xlrd#excel表的路徑,可絕對路徑,可相對路徑 file_name = "haha.xlsx" file = xlrd.open_workbook(file_name)# 輸出Excel中表的個數 print(file.nsheets)# 讀取某張表 sheet = file.sheet_by_name("Sheet1") # 獲取表的行數 nrows = sheet.nrows # 獲取表的列數 ncols = sheet.ncols print("nrows: %d, ncols: %d" % (nrows, ncols))# 獲取指定坐標的數據,(從0開始計數) cell_value = sheet.cell_value(0, 0) print(cell_value)# 獲取第x行的數據(從0開始計數) row_value = sheet.row_values(0) print(row_value)# 獲取第x列的數據(從0開始計數) col_value = sheet.col_values(0) print(col_value)#獲取指定列數范圍的數據(從0開始,左右均有效,到盡頭可不寫,如[2:]/[:6]) x=col_value[2:6] print(x)參考博客:https://blog.csdn.net/gdkyxy2013/article/details/88661123
總結
以上是生活随笔為你收集整理的python从excel中读取数据的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 属性文法和语法制导翻译
- 下一篇: 13. OD-内嵌补丁,过期的软件DVD