在PyCharm中检查xlwings Fibonacci示例中的调试跟踪时,我会针对以下代码行收到以下消息:
sht = xw.Book.caller().sheets[0]
无法获得<class xlwings.main.Sheet>
的重播
代码似乎运行正常,但有人可以解释这条消息的含义吗?
(python 3.6和xlwings 0.11.4)
答案 0 :(得分:0)
__repr__()
是一种处理xlwings.main.Sheet
对象表示的神奇方法。
在这种情况下,xlwings.main.Sheet
类可能没有__repr__()
方法,该方法设置类的表示形式。如果代码在没有它的情况下工作正常,则无需担心。