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 trial

Python Object-Oriented Python (retired) Hack-n-Slash Warriors! Come Out and Play-ay!

Kishore Kumar
Kishore Kumar
5,451 Points

When Warrior is converted to a string, the string should be like "Warrior, <weapon>, <attack_limit>". Update your class

When Warrior is converted to a string, the string should be like "Warrior, <weapon>, <attack_limit>". Update your class

My Code:

from character import Character class Warrior(Character): weapon = 'sword' def rage(self): self.attack_limit = 20 def str(): str = 'Warrior, {}, {}'.format(self.weapon, self.attack_limit) return str

Getting Error

warrior.py
from character import Character
class Warrior(Character):
  weapon = 'sword'
  def rage(self):
    self.attack_limit = 20
  def str():
    str = 'Warrior, {}, {}'.format(self.weapon,  self.attack_limit)
    return str

1 Answer

Haider Ali
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Haider Ali
Python Development Techdegree Graduate 24,728 Points

Hi Kishore,

I have noticed that there are multiple things wrong with your code.

First of all, the __str__ method is a special method and requires you to put 2 underscores before and after str. Instead, you have just wrote str. Remember that it will not work the way you want it to if you don't write __str__.

Secondly, you have forgot to pass in the self argument to the method. Here is what your code should look like:

from character import Character
class Warrior(Character):
  weapon = 'sword'
  def rage(self):
    self.attack_limit = 20
  def __str__(self):
    str = 'Warrior, {}, {}'.format(self.weapon, self.attack_limit)
    return str

Finally, I would just like to mention that the creation of the str variable on line 7 is unnecessary. you can just return the formatted string like this:

return 'Warrior, {}, {}'.format(self.weapon, self.attack_limit)

:)