Python Forum
Defining parent Class in Python 2.7.11 - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Defining parent Class in Python 2.7.11 (/thread-22884.html)



Defining parent Class in Python 2.7.11 - sarah - Dec-01-2019

Hi everybody,
I am new to programming, I have networking back ground.
These days I am learning OOP.
I noticed following:
I can define parent class with out ()as shown in example#1, I can also define parent class with ()as shown in example#2. what is the conventional way to define Parent class is it with () or without ()?

Thanks and have a good weekend!!

# example#1
>>> class TEST:
...  pass
...
# example#2
>>> class TEST():
...  pass



RE: Defining parent Class in Python 2.7.11 - Gribouillis - Dec-01-2019

Hi Sarah,

sarah Wrote:Defining parent Class in Python 2.7.11
Don't use python 2.7. Its end of life is scheduled for January 1st, 2020.. Use python 3, otherwise you're going to learn obsolete things and you won't be able to run the code that everybody runs.

sarah Wrote:what is the conventional way to define Parent class is it with () or without ()?

  • In current python 3, the conventional way is without ().
  • In python 2.7, the conventional way is class Test(object): pass
  • The two ways you showed above work in python 2.7 but they define prehistoric "old style classes" that go back to python 1. I'm very nostalgic of python 1 but I wouldn't recommend it to anyone nowadays.



RE: Defining parent Class in Python 2.7.11 - sarah - Dec-03-2019

Appreciated!!