生活随笔
收集整理的這篇文章主要介紹了
Python xlrd 读取xls文件
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>
#?-*-?coding:?utf-8?-*-?
import?sys
import?xlrdfrom?string?import?Templatedef?open_excel(file=?'file.xls'):try:data?=?xlrd.open_workbook(file)return?dataexcept?Exception,e:print?str(e)
#根據(jù)索引獲取Excel表格中的數(shù)據(jù)???參數(shù):file:Excel文件路徑?????colnameindex:表頭列名所在行的所以??,by_index:表的索引
def?excel_table_byindex(file=?'file.xls',colnameindex=0,by_index=0):data?=?open_excel(file)table?=?data.sheets()[by_index]nrows?=?table.nrows?#行數(shù)ncols?=?table.ncols?#列數(shù)colnames?=??table.row_values(colnameindex)?#某一行數(shù)據(jù)?list?=[]for?rownum?in?range(1,nrows):row?=?table.row_values(rownum)if?row:app?=?{}for?i?in?range(len(colnames)):app[colnames[i]]?=?row[i]?list.append(app)return?list#根據(jù)名稱獲取Excel表格中的數(shù)據(jù)???參數(shù):file:Excel文件路徑?????colnameindex:表頭列名所在行的所以??,by_name:Sheet1名稱
def?excel_table_byname(file=?'file.xls',colnameindex=0,by_name=u'Sheet1'):data?=?open_excel(file)table?=?data.sheet_by_name(by_name)nrows?=?table.nrows?#行數(shù)?colnames?=??table.row_values(colnameindex)?#某一行數(shù)據(jù)?list?=[]for?rownum?in?range(1,nrows):row?=?table.row_values(rownum)if?row:app?=?{}for?i?in?range(len(colnames)):app[colnames[i]]?=?row[i]list.append(app)return?listdef?main():tables?=?excel_table_byindex()for?row?in?tables:print?rowtables?=?excel_table_byname()for?row?in?tables:print?rowdef?run():filepath?=?unicode(r"E:\workspace\doc\代碼修改\各網(wǎng)點(diǎn)聯(lián)系方式.xls",?'utf-8').encode("cp936")tables?=?excel_table_byindex(file=filepath)temp?=?Template('<option?value="$name">$name</option>')for?row?in?tables:d?=?dict(name=row.get(row.keys()[1]).encode("utf-8"))print?temp.safe_substitute(d)if?__name__=="__main__":#?main()run()
轉(zhuǎn)載于:https://my.oschina.net/dexterman/blog/212438
總結(jié)
以上是生活随笔為你收集整理的Python xlrd 读取xls文件的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。