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 trialjohnahodge
6,639 PointsIndexing the first character of a list item to find items that start with "A".
I thought I would index the first character of each list item using list_item.index[0], but that doesn't appear to be working. Any thoughts on what I'm missing?
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
for continent in continents:
if continent.index[0] == 'A':
print("* " + continent)
2 Answers
ygh5254e69hy5h545uj56592yh5j94595682hy95
7,934 Points# Just remove the .index
if continent.index[0] == 'A':
# Correct
if continent[0] == 'A':
# You don't have to write index[0] to get elements from an array or in this case
# get the first letter of a string
# The [0] there in itself refers to the index number
johnahodge
6,639 PointsAwesome, thank you!