标签: python oop class object
可能重复: Old style and new style classes in Python python class inherits object
class foo:
和
class foo(object):
有人可以解释为什么我们在类定义中使用对象吗?
答案 0 :(得分:0)
在Python 2.x中,第一个声明是旧式类,第二个声明是新式类。您应该始终为新代码使用新式类。
在Python 3中,所有类都是新式的,所以没有区别。