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 trialMUZ141083 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