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

Iterable

Having trouble with this challenge keep getting try again!

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

def __iter__(self):
    for self in self.pattern
    yield pattern


def __str__(self):
    output = []
    for blip in self.pattern:
        if blip == '.':
            output.append('dot')
        else:
            output.append('dash')
    return '-'.join(output)
morse.py
class Letter:
    def __init__(self, pattern=None):
        self.pattern = pattern

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


class S(Letter):
    def __init__(self):
         pattern = ['.', '.', '.']
         super().__init__(pattern)
Ryan Cross
Ryan Cross
5,742 Points

the challenge: Add an iter method to the Letter class so the letter's pattern can be iterated through. You'll want to use yield or yield from.

Do not convert the pattern to dots and dashes in iter.

3 Answers

Ryan Cross
Ryan Cross
5,742 Points

look again at using yield from

@Ryan Cross hey man thanks for your help I figured it out I wasn't doing the class method right

Ryan Cross
Ryan Cross
5,742 Points

you bet! work hard and have fun!

@Ryan Cross ok so I changed it up but still get the same answer not sure what I am doing wrong

def add(self, pattern): self.pattern.append(pattern)

def __len__(self):
    return len(self.pattern)

def __contains__(self, pattern):
    return pattern in self.pattern

def __iter__(self):
    yield from self.pattern