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 Introducing Lists Using Lists Continental

Nicholas Dallas
Nicholas Dallas
2,691 Points

for in method won't work for some reason.

was just wondering if I did something wrong here because the assertion error keeps coming up saying that I alerted the text.

please let me know if it is just my coding.

Thank you, Dallas

continents.py
continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]
for continents in continents:
    print("*  " + continents)

1 Answer

Steven Parker
Steven Parker
229,657 Points

You don't want to use the same name for the loop variable as you do for the iterator. A good name for the variable might be "continent" (singular), since the loop will put one at a time into it.

for continent in continents:

And it looks like you have too many spaces beside the "bullet" (asterisk). The challenges can be very picky about output formats!