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

Intro Lists Task#2 How do you only print continents that begin with the letter "A"

I am having trouble trying to figure out how to specifically print out certain words with certain letters out of a list.

continents.py
continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]
# Your code here
print("Continents:")
for continent in continents:
    print("* " + continent)

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Nicholas Mejia! Just like you can get an element from a list using an index, you can also do the same thing with a string. For example:

student_name = "Nicholas"
print(student_name[0])

This would output:

N

Because "N" is the first letter of "Nicholas"

What you want to do is check:

if continent[0] == "A":

And then indent the print() statement you currently have inside that if statement. That way only continents that have the first letter of "A" will be printed.

Hope this helps! :sparkles: