Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Python 中的旧样式和新样式类 python 类继承对象
有什么区别
class foo:
和
class foo(object):
谁能解释为什么我们在类定义中使用对象?
在 Python 2.x 中,第一个声明是旧式类,第二个版本是新式类。您应该始终对新代码使用新型类。
在 Python 3 中,所有类都是新式的,所以没有区别。