Difference between class declarations

前端 未结 3 900
一向
一向 2021-01-20 21:20

I see some similar questions about this topic, but i wish to be sure, so i am asking...

What is the difference between:

class MyClass:
    pass
         


        
3条回答
  •  孤独总比滥情好
    2021-01-20 21:59

    Class declarations of the type class MyClass(object) are New Style classes on Python 2.x

    Guido writes about some of the thinking that brought about the new classes in the History of Python

提交回复
热议问题