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

Dillon Reyna
Dillon Reyna
9,531 Points

Help with @classmethod - not sure where I'm going wrong

My code is attached - where am I going wrong?

The goal is to create a class method that will accept an input like "dash-dot-dot" and convert it into ['_', '.', '.']

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

    def __iter__(self):
        yield from self.pattern

    def __str__(self):
        output = []
        for blip in self:
            if blip == '.':
                output.append('dot')
            else:
                output.append('dash')
        return '-'.join(output)

    @classmethod
    def from_string(cls, string):
    stringList = string.split('-')
    output = []
    for blip in stringList:
        if (blip.lower() == 'dash'):
            output.append('_')
        elif (blip.lower() == 'dot'):
            output.append('.')
    return cls(output)


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

1 Answer

Anibal Marquina
Anibal Marquina
9,523 Points
class Letter:
    def __init__(self, pattern=None):
        self.pattern = pattern

    def __iter__(self):
        yield from self.pattern

    def __str__(self):
        output = []
        for blip in self:
            if blip == '.':
                output.append('dot')
            else:
                output.append('dash')
        return '-'.join(output)

    @classmethod
    def from_string(cls, string):
        lista = []
        string = string.split('-')
        for item in string:
            if item.lower() == 'dash':
                lista.append('_')
            elif item.lower() == 'dot':
                lista.append('.')
        return cls(lista)


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