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
Andrew Gursky
12,576 PointsWhy isn't this working? - Morse Code Challenge
Not sure why this isn't the right solution.
class Letter:
def __init__(self, pattern=None):
self.pattern = pattern
def __str__(self):
newStr = ''
for val in self.pattern:
if val === '.':
newStr+='dot-'
elif val === '_':
newStr+='dash-'
return newStr
class S(Letter):
def __init__(self):
pattern = ['.', '.', '.']
super().__init__(pattern)
super().__str__(pattern)
3 Answers
Chris Freeman
Treehouse Moderator 68,468 PointsYou have the general idea. Please fix the following issues:
- The
ifcomparison is double-equals (==) not triple-equals - The
newStrpattern has a trailing hyphen that needs trimming - The
S.__str__method is not defined. Add this method with a simplereturn super().__str__()
Post back if you need more help. Good Luck!!
Kevin Brennan
19,920 PointsHi Andrew,
Chris has given you a few great clues, for your return on the __str__ as you are using a list don't forget the 'join' method.
Kev
Andrew Gursky
12,576 PointsThanks guys! Both right:)