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 Object-Oriented Python Advanced Objects Iterable Album

Here is a class called Album that holds a list of songs. Add an _iter_ method to our Album class and use yield or yield

Here is a class called Album that holds a list of songs. Add an iter method to our Album class and use yield or yield from so the songs in our album can be iterated through.

iter_album.py
class Album:
    def __init__(self):
        self.songs = []
    def add(self, song):
        self.songs.append(song)
    # insert your code here
    def __iter__(yield, 

2 Answers

This worked for me:

def __iter__(self):
    yield from self.songs
Steven Parker
Steven Parker
229,783 Points

You won't need "yield" as a parameter of the method, but you will need "self" there.

You might want to review the video and take another look at the examples shown for creating an "iter" method and using "yield" in it.

Shawndee Boyd
Shawndee Boyd
6,002 Points

Can someone help me with this I have been doing this for 10 minutes and I still don't get it.

class Album: def init(self): self.songs = [] def add(self, song): self.songs.append(song) # insert your code here

def __iter__(yield)