Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Guide Alison Ndapasowa
11,218 Pointsl'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 = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
adrian miranda
13,557 Pointsadrian miranda
13,557 PointsWhy 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!