excel表格是我們處理數(shù)據(jù)的工具,在python編程中,也有對excel表格的操作。本文主要向大家介紹python中讀取excel某列數(shù)據(jù)的代碼,并演示將讀取的數(shù)據(jù)變?yōu)楦↑c數(shù)的過程。
一、python讀取excel某列數(shù)據(jù)
importxlrd
worksheet=xlrd.open_workbook('E:\\Crawl\\000002.xls')
sheet_names=worksheet.sheet_names()
print(sheet_names)
forsheet_nameinsheet_names:
sheet=worksheet.sheet_by_name(sheet_name)
rows=sheet.nrows#獲取行數(shù)
cols=sheet.ncols#獲取列數(shù),盡管沒用到
all_content=[]
cols=sheet.col_values(3)#獲取第二列內(nèi)容,數(shù)據(jù)格式為此數(shù)據(jù)的原有格式(原:字符串,讀取:字符串;原:浮點數(shù),讀?。焊↑c數(shù))
print(cols)
print(cols[3])
print(type(cols[3]))#查看數(shù)據(jù)類型
輸出結(jié)果為
['Sheet1']
['','','-72.20','248.84','-32.67','156.93','-49.58','59.36','']
248.84
二、將讀取的數(shù)據(jù)變?yōu)楦↑c數(shù)
importxlrd
worksheet=xlrd.open_workbook('E:\\Crawl\\000002.xls')
sheet_names=worksheet.sheet_names()
print(sheet_names)
forsheet_nameinsheet_names:
sheet=worksheet.sheet_by_name(sheet_name)
rows=sheet.nrows#獲取行數(shù)
cols=sheet.ncols#獲取列數(shù),盡管沒用到
all_content=[]
foriinrange(rows):
cell=sheet.cell_value(i,3)#取第二列數(shù)據(jù)
try:
cell=float(cell)#轉(zhuǎn)換為浮點數(shù)
all_content.append(cell)
exceptValueError:
pass
print(all_content)
print(all_content[3])
print(type(all_content[3]))
以上內(nèi)容為大家介紹了python中如何讀取excel某列數(shù)據(jù)?希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。