无论是老式类还是新式类,在Python3.5中显示结果是一样

来源:3-1 用Python定义类

慕田峪2387399

2018-08-21 13:36

无论是老式类还是新式类,在Python3.5中显示结果是一样

D:\Deps\PycharmProjects\OOP\venv\Scripts\python.exe D:/Deps/PycharmProjects/OOP/oop_001_class.py
<class '__main__.OldStyle'>
['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'des', 'name']
---------------------------------------------------------------------
<class '__main__.NewStyle'>
['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'des', 'name']

Process finished with exit code 0


写回答 关注

2回答

  • 慕粉uspeakeasy
    2018-10-31 17:31:11

    对的,现在都是一样了。

  • willann
    2018-08-25 20:29:20
    python3里都继承自object类


Python-面向对象

Python面向对象教程,带你深入了解python面向对象特性

71236 学习 · 81 问题

查看课程

相似问题