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 trialsaikiran maddukuri
17,919 Pointscan't understand why super class used in sneaky and agile
import random
class Sneaky:
sneaky = True
def __init__(self, sneaky=True, *args, **kwargs):
super().__init__(*args, **kwargs)
self.sneaky = sneaky
def hide(self, light_level):
return self.sneaky and light_level < 10
class Agile:
agile = True
def __init__(self, agile=True, *args, **kwargs):
super().__init__(*args, **kwargs)
self.agile = agile
def evade(self):
return self.agile and random.randint(0, 1)
Hi this was given in work-space to fallow along with the lecture now what my doubt in this snippet was classes Sneaky and Agile hadn't inherited any class but it had passed to the super class instance __init__
method i can't understand to what instance __init__
method arguments will be passed.
(MOD: I formatted the code in your question to make it easier for people to read and help you out. To find out how to do this, see the Markdown Cheatsheet which you can find just below the textbox when typing a question.)
1 Answer
Louise St. Germain
19,424 PointsHi Saikiran,
Chris Freeman has given a couple of excellent answers to this in other forum discussions where people had similar questions. Have a look through this shorter version and longer version, which I hope you will find helpful!
saikiran maddukuri
17,919 Pointssaikiran maddukuri
17,919 Pointsstill not understand it said the extra arguments will be passed down to lower chain of MRO but hear in the code which i tried was facing an error.
when i run commands in REPL i expected
but what i get was
can you please modify the code to get the expected solution
saikiran maddukuri
17,919 Pointssaikiran maddukuri
17,919 Pointsthank your so much i got it now in simple way A simple explanation, thank you both. I'm afraid the instructor failed to mention that calling multiple classes in the creation of an instance creates a hierarchy of parenthood.
So if it was
We would have:
Agile as the child of Sneaky Sneaky as the child of Character I guess Thief is the child of Agile?
right??? got it from Jay Reyes comment