标题中的问题
示例代码:
>>> j.type()
u'joint'
>>> type(j)
<class 'pymel.core.nodetypes.Joint'>
看看这个简单的例子。您正在尝试比较两个不同的东西 -Joint
类方法type
和 python 内置函数type
- 它们具有相同的名称,所有这些:
class Joint():
def type(self):
return u'joint'
>>> j = Joint()
>>> j.type()
'joint'
>>> type(j)
<class '__main__.Joint'>