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 Ranges

Oliver Palmer
Oliver Palmer
1,774 Points

Why 'i' for the variable name?

Ashley uses 'i' for the variable name here...

Why 'i' in particular? Does it stand for something?

1 Answer

Clayton Perszyk
MOD
Clayton Perszyk
Treehouse Moderator 48,723 Points

Not sure what the code is that you're referencing, but generally, i means index... It's common practice to use i as a variable in loops, where each iteration holds the current index.

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

...and then by extension, j, k, etc. are also used as looping indexes.