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

morse.py

Please look through my code lines as attached. I've tried several ways but i'm not getting through this stage. Please help point out what is wrong. Thank you.

morse.py
class Letter:
    def __init__(self, pattern=None):
        self.pattern = pattern

    def __str__(self):
        translate = []
        for n in pattern:
            if n == ".":
                note = "dot"
            elif n == "_":
                note = "dash"
            translate.append(note)
        moon = "-".join(translate)
        return moon


class S(Letter):
    def __init__(self):
        pattern = ['.', '.', '.']
        super().__init__(pattern)

1 Answer

Steven Parker
Steven Parker
229,670 Points

You are very close here! When you refer to the pattern stored in the object, you need to use the keyword "self." in front of it.

Fix that, and you'll pass the challenge. :+1:

Thank you so much Steven. It worked like magic. You are the best!