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

Alan Haven
Alan Haven
960 Points

How do you access characters in string by indexing?

Hard time figuring out the second task to this challenge on continents starting only with letter "A"

continents.py
continents = [
    'Asia',
    'South America',
    'North America',
    'Africa',
    'Europe',
    'Antarctica',
    'Australia',
]

for continent in continents:
    print("* " + continent)

2 Answers

Steven Parker
Steven Parker
231,007 Points

You can think of a string as a list of individual characters. So for example, if you had a string called "name" and you wanted the third character from it, you could reference "name[2]". Since index values start with 0, the index number for the third item would be 2.

So with this info, I'll bet you can create a reference for the first character of "continent". :wink:

Alan Haven
Alan Haven
960 Points

Got it, thanks Steven!