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 trialDaniel Fragoso
5,333 PointsI don't get how to pass the S subclass's pattern attribute into a method in its parent class Letter
Can anyone help me out with this?
class Letter:
def __init__(self, pattern=None):
self.pattern = pattern
def __str__(self, pattern):
s=""
for item in pattern:
if item == '.':
s+="dot-"
elif item == '_':
s+="dash-"
else:
pass
return s[0:len(s)-1]
class S(Letter):
def __init__(self):
pattern = ['.', '.', '.']
super().__init__(pattern)
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close! The Letter.__str__
method does not need accept a "pattern" argument. Instead, the method should reference the instance attribute self.pattern
- remove the unnecessary
pattern
parameter - reference
self.pattern
instead ofpattern
in thefor
loop
Daniel Fragoso
5,333 PointsI had already figured it out, but thanks anyway! :)