码迷,mamicode.com
首页 > 编程语言 > 详细

python-excel 读取

时间:2020-07-04 22:31:00      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:pytho   excel   sheet   rownum   dex   print   file   elf   test   

import xlrd

class ReadExcel:
def __init__(self,filename,sheetname):
self.workbook = xlrd.open_workbook(filename)
self.sheetname = self.workbook.sheet_by_name(sheetname)

def read_cell(self,rownum, colnum):
return self.sheetname.cell(rownum,colnum).value

print(ReadExcel(‘test.xlsx‘,‘Sheet1‘).read_cell(1,1))

python-excel 读取

标签:pytho   excel   sheet   rownum   dex   print   file   elf   test   

原文地址:https://www.cnblogs.com/mqhuang/p/13236838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!