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 trialIsaiah Anderson
730 PointsNot sure what this error message means, my output code seems to be the correct answer...
AssertionError: '* Asia' not found in '* Asia\n* South America\n* North America\n* Africa\n* Europe\n* Antarctica\n* Australia' : Hmm...not finding the correct items in your output
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
for continent in continents:
print("* " + continent)
2 Answers
Brandon White
Full Stack JavaScript Techdegree Graduate 35,771 PointsHi Isaiah,
It looks like you may have two spaces after the asterisk instead of only one. Remove that extra space and you should be good to go. Or perhaps you tabbed instead of pressing the space bar. Either way, once thatβs corrected youβll pass the challenge.
Isaiah Anderson
730 PointsThanks that worked!