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

l'd like to print only the countries starting with the letter 'A' . How do l go about it?

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

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

Why don't you try something, and if it doesn't work, show it here.

For a way to get started, why don't you think about how you would go through the list, perhaps just to print each continent, one at a time. Look at the for statement, and use it on the list.

Once you have it printing all the continents, now work on checking each continent to see if it starts with an A.

If a problem seems big, focus on little pieces of it, until it starts to make more sense. You can do this!