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

Print continents starting with A

I don't understand why this isn't working. For each item in the list continents, if the 0th character is A, print the item.

Edit: the index needs to be in square brackets for some reason, but I don't understand why this works. It's not a list.

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

2 Answers

You sort of answered the question already: "the index needs to be in square brackets".

At the moment you are using parenthesis instead of square brackets, hence the error.

I figured that out, but I don't understand why it's the answer.

A string is an iterable data type, you can traverse it, eg:

for character in 'foobar':
    print(character)

In most languages it's just an array (list) of characters "stringed" together and as such you can access it by index.