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 trialpierreilyamukuru
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,992 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,438 Pointstimoleodilo
1,438 Pointsu have a syntax error