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 Python Sequences Sequence Iteration Iterating With For Loops

Where could I be going wrong?Please help,it gives out an Assertion Error.How?

rainbow = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet'] for index, element in enumerate(rainbow, 1): print(f'{index}. {element}') print(element)

iterating_lists.py
rainbow = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']
for index, element in enumerate(rainbow, 1):
    print(f'{index}. {element}')
    print(element)

1 Answer

Steven Parker
Steven Parker
230,274 Points

The instructions did not ask for a specific starting number, so they are expecting to see "0" as the first index.

By specifying a different starting number (1), the output created doesn't produce what the challenge expects to see, and so it gives you the "Bummer" message.

Thank you i realized my mistake and fixed it.