Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

MUZ141083 Tariro Chimanga
2,684 PointsOOP challenge task 4
Cracking my head on this challenge. managed the first three but cant get the last one. Please help!!!
When Warrior is converted to a string, the string should be like "Warrior, <weapon>, <attack_limit>". Update your class to produce this string using values from the instance.
from character import Character
class Warrior(Character):
weapon='sword'
def rage(self):
self.attack_limit=20
3 Answers

Keerthi Suria Kumar Arumugam
4,585 PointsI am not sure if I follow your question 100%. But I think you wish to change the str function.
To display your class name, your weapon and your attack limit, define your str function as follows:
def __str__(self):
return "{}, Weapon : {}, Attack Limit : {}".format(
self.__class__.__name__,self.weapon,self.attack_limit
)

simon bao
5,522 Pointsdef __str__(self):
return("Warrior, {}, {}".format(self.weapon, self.attack_limit))

Nasser ALOstath
3,028 Pointsi did that but still not working ....
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
)
MUZ141083 Tariro Chimanga
2,684 PointsMUZ141083 Tariro Chimanga
2,684 PointsThanx a lot Keerthi. finally solved it