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

pat t
pat t
5,175 Points

morse.py help

My output is what it says it should be but still coming up wrong. Any idea why

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

    def __str__(self):
        self.result = []
        for char in self.pattern:
            if char == '.':
                self.result.append('dot')
            elif char == '-':
                self.result.append('dash')
        string = '-'.join(self.result)
        return string


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

2 Answers

andren
andren
28,558 Points

The challenge (counterintuitively) uses _ to represent dash, not -. So your code needs to reflect that like this:

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

    def __str__(self):
        self.result = []
        for char in self.pattern:
            if char == '.':
                self.result.append('dot')
            elif char == '_': # Changed - to _
                self.result.append('dash')
        string = '-'.join(self.result)
        return string


class S(Letter):
    def __init__(self):
        pattern = ['.', '.', '.']
        super().__init__(pattern)
pat t
pat t
5,175 Points

thank you much that is odd