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.

pierreilyamukuru
9,831 PointsCan someone help me to figure out where there is a problem? and guide me to fix it.
Access string by index.
continents = ['Asia', 'South America', 'North America', 'Africa', 'Europe', 'Antarctica', 'Australia']
for continent in continents[A,]:
str('A')=continents.startswith('A')
print("* "+ continent)
1 Answer

Roger Sullivan
10,603 Pointsi 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
pierreilyamukuru
9,831 Pointspierreilyamukuru
9,831 PointsThank you!!
timoleodilo
1,437 Pointstimoleodilo
1,437 Pointsu have a syntax error