python excel查找一个值出现的位置_python怎么在excel中定位数据?

有安装Excel的机器上

rom win32com.client import constants, Dispatch

class EasyExcel:

def __init__(self, filename=None):

self.xlApp = Dispatch('Excel.Application')

if filename:

self.filename = filename

self.xlBook = self.xlApp.Workbooks.Open(filename)

else:

print "please input the filename"

def close(self):

self.xlBook.Close(SaveChanges=0)

del self.xlApp

def getCell(self, sheet, row, col):

"获取指定sheet,的指定行,和列的值"

sht = self.xlBook.Worksheets(sheet)

return sht.Cells(row, col).Value

def getRange(self, sheet, row1, col1, row2, col2):

"返回一个二维数组,return a 2d array (i.e. tuple of tuples)"

sht = self.xlApp.Worksheets(sheet)

return sht.Range(sht.Cells(row1, col1), sht.Cells(row2, col2)).Value

你可能感兴趣的:(python,excel查找一个值出现的位置)