溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python讀取excel表數(shù)據(jù)的方法

發(fā)布時間:2020-09-29 16:56:45 來源:億速云 閱讀:899 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關(guān)python讀取excel表數(shù)據(jù)的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

python讀取excel表數(shù)據(jù)的方法:首先安裝Excel讀取數(shù)據(jù)的庫xlrd;然后獲取Excel文件的位置并且讀取進來;接著讀取指定的行和列的內(nèi)容,并將內(nèi)容存儲在列表中;最后運行程序即可。

python讀取excel表數(shù)據(jù)的方法:

1、安裝Excel讀取數(shù)據(jù)的庫-----xlrd

直接pip install xlrd安裝xlrd庫

#引入Excel庫的xlrd
import xlrd

2、獲取Excel文件的位置并且讀取進來

#導(dǎo)入需要讀取Excel表格的路徑
data = xlrd.open_workbook(r'C:\Users\NHT\Desktop\Data\\test1.xlsx')
table = data.sheets()[0]

3、讀取指定的行和列的內(nèi)容,并將內(nèi)容存儲在列表中(將第三列的時間格式轉(zhuǎn)換)

#創(chuàng)建一個空列表,存儲Excel的數(shù)據(jù)
tables = []
  
  
#將excel表格內(nèi)容導(dǎo)入到tables列表中
def import_excel(excel):
  for rown in range(excel.nrows):
   array = {'road_name':'','bus_plate':'','timeline':'','road_type':'','site':''}
   array['road_name'] = table.cell_value(rown,0)
   array['bus_plate'] = table.cell_value(rown,1)
   #將Excel表格中的時間格式轉(zhuǎn)化
   if table.cell(rown,2).ctype == 3:
     date = xldate_as_tuple(table.cell(rown,2).value,0)
     array['timeline'] = datetime.datetime(*date)
   array['road_type'] = table.cell_value(rown,3)
   array['site'] = table.cell_value(rown,4)
   tables.append(array)

4、運行程序

if __name__ == '__main__':
  #將excel表格的內(nèi)容導(dǎo)入到列表中
  import_excel(table)
  #驗證Excel文件存儲到列表中的數(shù)據(jù)
  for i in tables:
    print(i)

5、最終的運行效果如下:

python讀取excel表數(shù)據(jù)的方法

6、完整的程序代碼:

import xlrd
from xlrd import xldate_as_tuple
import datetime
#導(dǎo)入需要讀取的第一個Excel表格的路徑
data1 = xlrd.open_workbook(r'C:\Users\NHT\Desktop\Data\\test.xlsx')
table = data1.sheets()[0]
#創(chuàng)建一個空列表,存儲Excel的數(shù)據(jù)
tables = []
#將excel表格內(nèi)容導(dǎo)入到tables列表中
def import_excel(excel):
  for rown in range(excel.nrows):
   array = {'road_name':'','bus_plate':'','timeline':'','road_type':'','site':''}
   array['road_name'] = table.cell_value(rown,0)
   array['bus_plate'] = table.cell_value(rown,1)
   if table.cell(rown,2).ctype == 3:
     date = xldate_as_tuple(table.cell(rown,2).value,0)
     array['timeline'] = datetime.datetime(*date)
   array['road_type'] = table.cell_value(rown,3)
   array['site'] = table.cell_value(rown,4)
   tables.append(array)
if __name__ == '__main__':
  #將excel表格的內(nèi)容導(dǎo)入到列表中
  import_excel(table)
  for i in tables:
    print(i)

關(guān)于python讀取excel表數(shù)據(jù)的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI