Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

haldor hjertnes
571 Pointscontinents assignement
ran into some trouble with the continents coding assignment task 2
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
# Your code here
for continent in continents:
print("* " + continent)
if continent[0] == "A":
print("* " + continent)
if continent == False:
print()
1 Answer

Steven Parker
222,096 PointsYou're getting close, here are a few hints:
- everything that is part of a loop must be indented
- you'll only need one conditional test ("if")
- you'll also only need one "print" statement
haldor hjertnes
571 Pointshaldor hjertnes
571 PointsThank you very much good sir, i was scratching my head for an hour shuffling every line etc etc, and i came to a line of code that i was confident that was right, but it wasnt. then i red this and removed the first print statement, now would u look at that, it worked xD