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 trialGeorge Thomas
458 Pointsmy code shows right and its saying that I have a country that doesn't start with A in my list but it doesn't
for continent in continents: for letter in continent[0]: if letter == "A"; print("continent")
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
# Your code here
for continent in continents:
print("* " + continent)
for continent in continents:
for letter in continent[0]:
if letter== "A":
print(continent)
2 Answers
Peter Vann
36,427 PointsHi George!
To pass multiple challenge tasks, always add code to the previous task, instead of coding it twice.
(In other words, don't have two versions of the for loop, just add code to the existing loop for the second challenge.)
Task 1:
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
# Your code here
for continent in continents:
print("* " + continent)
Task 2:
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
# Your code here
for continent in continents:
if continent[0] == 'A': # ONLY if the first character of the current continent is 'A'
print("* " + continent) # Will the continent name print
I hope that helps.
Stay safe and happy coding!
George Thomas
458 PointsYes it does Thank you! Got it