我们可以通过输入点''来查看对象的方法或变量列表。在对象旁边?
例如。
self.label = QLabel()
self.label. # can I get the methods list on entering the last '.' ?
我试过但很少有人拿到了这份名单。
是否有设置,请建议。
我可以通过编写以下代码来查看它们 -
>>> from PyQt4.QtGui import *
>>> from PyQt4.QtCore import *
>>> for i in dir(QLabel):
... print i