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 trialCallum Anderson
Data Analysis Techdegree Student 10,200 Pointsim stuck
dont understand
rainbow = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']
1 Answer
Michael Cronk
8,970 PointsSo what they want you to do is loop over ever element in the 'rainbow' list. So to do that, you need to write a for loop that prints each value in the list. They also want you to print out its index in the list, that is why we use 'for index, value in enumerate(rainbow)'
the enumerate basically lets you print out the index of the value its looping through.
It would look like
0 red 1 orange and so on...
rainbow = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']
for index, value in enumerate(rainbow):
print(index)
print(value)