Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Anthony Nemetz
1,717 PointsIndex with Specific Parameters
I have looked up several different functions on how to sort for "A" and call this properly but I'm falling short. We need to index for "A" then set a function to deliver this. I'm missing something easy
continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
# Your code here
for con in continents:
con.index("A")
print("* " + con)
1 Answer

Joseph Yhu
PHP Development Techdegree Graduate 48,523 PointsJust do this:
for con in continents:
if con[0] == "A":
print("* " + con)
Anthony Nemetz
1,717 PointsAnthony Nemetz
1,717 PointsThank you!! I appreciate the help a ton.