Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Object-Oriented Python Inheritance Super-Duper!

Regarding Super

class One: def init(self, name): self.name = name print("Parent init")

class Two(One): def init(self, name, age): print("Super init") super().init(self, name) self.age = age

a = Two("osama", 21)

Why its not running

2 Answers

Steven Parker
Steven Parker
229,708 Points

Methods have "self" as a first parameter, but it is provided implicitly by the system. When callling a method, it's not necessary to pass "self" explicitly as an argument.

Also, when posting code, use Markdown formatting to preserve indentation and other important aspects of your code.

Thanks for your replay and your suggestion about formatting . I actually figure out the issue when calling init with super i have added the self in it and when i remove the self within the init the error is gone :) . I m new to python

ok done :)