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 trialAdam Johnson
6,793 PointsShould have worked...
continents = [ 'Asia', 'South America', 'North America', 'Africa', 'Europe', 'Antarctica', 'Australia', ]
Your code here
for x in continents: print("*" + x)
The output was:
*Asia *South America *North America *Africa *Europe *Antarctica *Australia
which was the goal of the exercise. The variable I chose was "x" because it was easier, so am I discounted because I used a variable of my choice?
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
# Your code here
for x in continents:
print("*" + x)
1 Answer
Adam Johnson
6,793 Pointsfor x in continents: for x in continents: if x.startswith("A"): print("* " + x)
Nevermind, I figured it out. They wanted a space in between the star and the continent.