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

Why am I receiving an Assertion Error? The error explains that '* Asia is not found in.. (lists the continents)'

When I click check work, the AssertionError occurs and tells me "Asia is not found in"... then proceeds to list and repeat the continents in a for loop.

continents.py
continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]
# Your code here

for i in continents:
    print(continents)

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Iris Vargas, you post title has the clue.

The checker is looking for '* Asia'. While 'Asia' may found, the asterisk and space are missing. Add these two characters as a prefix to the continent name printed.

Post back if you need more help. Good luck!!