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

Can someone help me to figure out where there is a problem? and guide me to fix it.

Access string by index.

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

1 Answer

i think your over thinking this. Your just making a bullet list so printing on each iteration of the loop with the + to concatenate works. so this is all you really need

for item in continents:
    if item.startswith(“A”):
        print("* "+item)

Then you probably want to throw an if statement in for the second part of the challenge that uses the startswith() that way the code only prints if item starts with A

Thank you!!

u have a syntax error