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

Grayson Rothchild
Grayson Rothchild
7,041 Points

Cant get task #2 to run

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



for c in continents:
    print("* " + c)


if c[0] == "A":
    print(c)

2 Answers

Steven Parker
Steven Parker
231,007 Points

You coded a good conditional test, but the "if" line needs to be placed between the loop and the "print" statement that was already there. You won't need another "print" statement.

Fix that, and be sure to use proper indenting, and you should pass task 2.