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

Continents with A

Yes I did see a similar question, but I was unable to solve it still

My code:

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

Your code here

for continent in continents: if continent.startswith() = A: print("* " + continent)

What am I doing wrong? Does the if go before the for? Also, I'm having trouble understanding the hint with string and indexing. Could I get a definition of that please?

Thanks!

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

1 Answer

Megan Amendola
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Megan Amendola
Treehouse Teacher

Hi! You're close. If you're going to use .startswith(), then you need to pass into the function the string you want to check against. Read more here. The function will return True or False if the string you passed in ('A') is at the beginning of the string you are checking it against (continent).

for continent in continents:
    if continent.startswith('A'):
        print("* " + continent)

Thank you! This helps so much Megan Amendola