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