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

Gard Sveipe Bahmanyar
Gard Sveipe Bahmanyar
1,693 Points

how?

How?

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

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

1 Answer

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

Hi, Gard! In your code here:

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

You are checking the len(continent) == A. len() gives you back the length of whatever you put in so it is checking a number against A. For example, 'Asia' is the first continent in your loop so it will check len('Asia') which is 4, if 4 == A will never be true since they are not equal. (Also, you need the string 'A' and not A. You also need == and not =.)

Instead, you need to access the first letter of each string and check it against the string 'A' to see if they are equal.

for continent in continents:
    if continent[0] == 'A':
        print("* " +continent)