使用python win32添加评论到excel

我正在尝试添加新的评论,以使用Win32的python擅长。

import win32com.client as win32 excel = win32.gencache.EnsureDispatch('Excel.Application') wb = excel.Workbooks.Open(r'C:\...\.xlsx') ws = wb.Worksheets('sheet1') ws.Cells(1,1).AddComment = "comment" 

– >对象没有属性'AddComment'

你知道如何添加新的评论,以使用Win32的Excel吗? 谢谢!

添加注释是一种方法,而不是一个属性。

 ws = wb.Worksheets('sheet1') ws.Cells(1,1).AddComment("comment") 

只要阅读MSDN中的文档 。