Bummer! You have been redirected as the page you requested could not be found.

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 Enumerate

Is index a built in feature of Python?

How does the interpreter know what index is referring to? Is this a built in feature that automatically points to an object's position in a sequence?

1 Answer

No it's just a variable.

This line: index = 1, declares the variable and sets it to 1. So the first time through the loop, the printed string would be 1. roast beef. This line: index+=1 increments the index variable by 1, so the next time through the loop the printed string would be 2. cucumbers. And so on until we looped through all the items in the groceries list.

Got it, thanks!