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 trialDavid Harris
4,177 Pointsmorse.py solution works fine in PyCharm and Workspace, but not here...
I copy my code from here into PyCharm and also Workspaces, which delivers the correct dot-dot-dot result, but I keep getting an error message...can anyone find the problem? Cheers...
class Letter:
def __init__(self, pattern=None):
self.pattern = pattern
def __str__(self):
morse = []
for x in self.pattern:
if x == ".":
morse.append("dot")
elif x == "_":
morse.append("dash")
return "-".join(morse)
class S(Letter):
def __init__(self):
pattern = ['.', '.', '.']
super().__init__(pattern)
2 Answers
ursaminor
11,271 PointsCopy and paste is the problem. Or it could be a mix of tabs and spaces. Try re-typing into the challenge with only spaces.
David Harris
4,177 PointsOk, wrote the code again, didn't work, then restarted the challenge, re-wrote the code the same way and it worked. Go figure. Thanks for the swift reply.
ursaminor
11,271 PointsYou're welcome. Do you mind selecting my answer as "the best one" so I get credit? Thanks!