>>> xlApp = win32com.client.Dispatch('Excel.Application')
>>> xlBook = xlApp.Workbooks.Open("d:\\3.xls")
a=xlBook.Worksheets("Sheet1")
c = a.Cells.Find("dd")
print c.Row
print c.Column
>>> xlApp = win32com.client.Dispatch('Excel.Application')
>>> xlBook = xlApp.Workbooks.Open("d:\\3.xls")
a=xlBook.Worksheets("Sheet1")
c = a.Cells.Find("dd")
print c.Row
print c.Column