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 over Ranges

Frances Angulo
Frances Angulo
5,311 Points

What is the current value?

I’m not sure what the question is asking me to produce. I thought it was expecting a 0-9 result on the range(10) but then it asks for us to append a ‘current value’ to the list... what is the current value? 9?

iterating_ranges.py
my_list = []

for i in range(0, 10, 1):
    my_list.append(10)
    print(i) 

1 Answer

Each time through the loop i changes. The "current value" would be the value of i and so i is what you should append. Also no need to print.