我在打开Excel文件并使用Python更新单元格时遇到问题。有什么建议么?我的代码如下:
xl = win32com.client.Dispatch("Excel.Application")
xl.DisplayAlerts = False
xl.ScreenUpdating = False
wb = xl.Workbooks.Open(filepath)
wb.WorkSheets(xl_sheet).Range(xl_cell).value = new_value
错误消息: 引发AttributeError(“'%s'对象没有属性'%s'”%(repr(self),attr)) AttributeError:''对象没有属性'WorkSheets'