+ 4
Can someone explain to me clearly about this super() function?
3 Respuestas
+ 6
The super() function in Python makes class inheritance more manageable and extensible. The function returns a temporary object that allows reference to a parent class by the keyword super.
read this.
https://www.educative.io/edpresso/what-is-super-in-python
+ 3
super() calls the constructor of the parent class no argument or default constructor in inheritance hierarchy...
+ 3
It's just a reference to parent class object from a derived class