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 trialslavi bomb
1,940 Points"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 = [
'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
Treehouse Moderator 37,799 Pointshi 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.
slavi bomb
1,940 Pointsslavi bomb
1,940 PointsThank you