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

How to access the index of a list you are trying to iterate? I dint think this was taught before

I dont have a clue how to do it im just throwing things at it at this point

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

for continent in continents:
    conti

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Raziel Martinez , you donโ€™t need to access the index of a list, per se, but rather that a str object is similar to a list in that you may access each letter as if it were an item in a list. So the first letter of a string is at index 0. This would be written as string[0].

Next, add a filter to eliminate continents not beginning with โ€œAโ€ (an if statement may help here).

Post back if you need more help. Good luck!!!