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

"introducing lists" challenge task 2 of 2

I cant seem to get the challenge correctly what am i doing wrong?... i have ran the code in workspaces and it seems to be right and working but not when I am running it in the challenge area. been stuck for ages

continents.py
continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]
# Your code here
for continent in continents:
    print("* " + continent)
for continent in continents:
    if continent[0] == "A":
        print(continent)

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,346 Points

hi Slavi. The good news is your code is correct. The question is written a little confusing. They only want the ones that start with an A. So get rid of what you did for step 1 and add the * to your print for the ones starting with A.

Thank you