现在,我无法使用以下代码从COM和Python读取的Excel单元中检索值:
from comtypes.client import CreateObject
filename=r'testrap.xlsx'
app = CreateObject("Excel.Application")
app.Visible = True
wb = app.Workbooks.Open(filename)
worksheet = wb.sheets(1)
for row in range(1,11):
data = worksheet.Cells(row,1).Value
print(data)
我总是得到
comtypes.client.lazybind.NamedProperty object at 0x....
而不是单元格的值打印在屏幕上。
我究竟做错了什么?
慕仙森
相关分类