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 trialSam Frampton
3,796 PointsIndentationError: unindent does not match any outer indentation level
I can't seem to find the bug in my code. I am aware there is an indentation error but I have tried multiple variations and I can't fix the issue.
continents = ['Asia', 'South America', 'North America', 'Africa', 'Europe', 'Antarctica', 'Australia']
# Your code here
for continent in continents:
if continent[0] == "A":
print("* " + continent)
1 Answer
Clayton Perszyk
Treehouse Moderator 48,850 PointsYour print statement needs to be indented.
Sam Frampton
3,796 PointsSam Frampton
3,796 PointsThanks