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!
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
Chang Hyeon Lee
2,008 PointsI need help
Also, I need an explanation for str, class, init, and the solution for code, please.
Thank you.
from character import Character
class Warrior(Character):
weapon = 'sword'
def rage(self):
self.attack_limit = 20
def __str__(self):
return "{}, Weapon : {}, Attack limit : {}".format(
self.__class__.__name__,self.weapon,self.attack_limit
)
1 Answer

Alexander Davison
65,468 PointsYour return string isn't what the challenge asked for.
The challenge expected this output:
Warrior, axe, 20
However, your str function doesn't return the desired string. Instead, you returned:
Warrior, Weapon : axe, Attack limit : 20
So, while your code does work, you didn't do what the challenge asked for. The solution:
from character import Character
class Warrior(Character):
weapon = 'sword'
def rage(self):
self.attack_limit = 20
def __str__(self):
return "{}, {}, {}".format(
self.__class__.__name__,
self.weapon,
self.attack_limit)
I hope this helps. ~Alex