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 trialDouglas Ngwenya
3,132 PointsPlease help Why does it still get lower case when I have infused upper case all over?
Challenge Task 3 of 3
Animal.noise() returns self.sound.lower(). Make Sheep.noise() return the uppercased version of the instance's sound.
Why does it return expected "SNEEZE" but got "sneeze"? Surely I have put lots of upper() all over. Is there a bug in this task?
from animal import Animal
class Sheep(Animal):
sound = "SNEEZE".upper()
def __init__(self, sound):
self.sound = 'SNEEZE'.upper
return self.sound.upper()
2 Answers
Chris Freeman
Treehouse Moderator 68,454 PointsThe key here is inheritance. The challenge checker is running Sheep.noise()
to get the sound. If there is not a method name noise()
in Sheep
, it will try to run the inherited method from the parent class. This is Animal.noise()
which returns self.sound.lower().
To solve the challenge, create a Sheep
method noise
which will override the inherited Animal.noise()
. It is in the Sheep.noise()
that you use the upper()
method to get the result you are looking for.
Post back if you have more questions. Good Luck!!!
Douglas Ngwenya
3,132 PointsFinally:
from animal import Animal
class Sheep(Animal):
sound = 'roar'
def noise(self):
return self.sound.upper()
Douglas Ngwenya
3,132 PointsIt is not making sense at all, but it worked!!
Douglas Ngwenya
3,132 PointsDouglas Ngwenya
3,132 PointsI tried all sort of things including this:
It still fails