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 trialsam short
1,481 PointsIterating lists
I am unsure what is being asks when they say to add a print statement above the existing print statement
rainbow = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']
for index, color in enumerate(rainbow, 1):
print(f"{index}. {color}")
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYour code is very close. The error message is misleading. The actual error is the enumerate
should start a 0, and not start at 1.
Post back if you need more help. Good luck!!