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

I'd like you to now only print continents that begin with the letter "A". HINT: Remember that you can access characters

I don't understand how to do an if statement that detects the first letters of the elements inside the list

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

1 Answer

Hi Joshua,

It may help to understand that a string is essentially a list of characters. So in order to target the third item in a list of foods like this:

example.py
foods = ['spaghetti', 'cheeseburger', 'dumplings', 'meatloaf', 'garden salad']

# you would/could do something like the following
print("Food Item: ", foods[2]) # output: Food Item: dumplings

So if you want to then target the third character in a string (which again is essentially a list of characters), you could do something like this:

example_2.py
my_fav_color = "candy apple red"
# Print the third character in my_fav_color
print("A Letter: ", my_fav_color[2]) # output: A Letter: n

If you still have trouble figuring it out after that, let me know and I'll add an answer here. But hopefully, that info is enough for you to come up with the answer on your own.

Good luck!

im still really confused at how make an 'if' statement that detects the first letter of the elements inside the list to see if it is "A"

Below is maybe the simplest solution.

continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]
# Your code here
for continent in continents:
    if continent[0] == "A":
        print("* {}".format(continent))