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 trialLaone Moshana
4,082 Pointsmethods that take parameters other than self,task challenge
i do not understand what am suppose to do
class Student:
name = "Your Name"
def praise(self):
return "You inspire me, {}".format(self.name)
def reassurance(self):
return "Chin up, {}. You'll get it next time!".format(self.name)
def feedback(self, grade):
if grade > 50:
return self.praise()
return self.reassurance()
class Students:
def--init--(self,name,praise,reaasurance, **kwargs):
self.name=name
self.praise=praise
1 Answer
James Joseph
4,885 PointsSo in the challenge you only have one class, Student
What he's asking you to do is to intialize the name when you create a class. To do this you need to set up the init at the start of the class
class Student:
def __init__(self):
See if you can figure out the rest :) if you get stuck I can give you a hand further on that.
The next is he wants to have the option of creating new attributes in the init incase he forgets something. You do this by adding **kwargs to the init and then also using setattr,
class Student:
def __init__(self, **kwargs):
Have a look at how setattr works in the docs here: https://docs.python.org/3/library/functions.html#setattr
If you get stuck let me know and I'll explain how to get it done.