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 trial

Python Introducing Lists Using Lists Continental

How to print items from a list that start with a certain letter.

I'm just trying to find the answer to this challenge question and I'm not having any luck. I know it's something along the lines of referencing the first character of each element in the list by using a for loop, but none of my solutions are working. In my head this should be correct, I'm defining "continent" as the new variable that will go through each element on the list and my if statement is saying that "if the first letter of each element contains "A" then I should print that element". Where am I going wrong with this?

continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]


for continent in continents:
     if continent[0] == "A":
        print("* " + contintent)    

Thanks

2 Answers

Looks like your code is correct, but you have a typo in your print statement!

Hint: check continent

Oh wow, haha. I feel like a dunce. Thanks for going over my code!