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

How do I append a list to a range?

For some reason, I'm struggling to append a range method in a list.

iterating_ranges.py
my_list = []
for i in my_list:
    range[0,10,1]
    my_list.append([1])

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Luke Tate! I feel like you're misinterpreting the instructions. The instructions are asking you to iterate over a range. Currently, you're trying to iterate over my_list which is empty so that for loop is never going to run. There are no items to loop over.

my_list = []

for i in range(0, 10):  # loop through the range 0 to 10
    my_list.append(i)  # append the number to the list

You would start by setting the range directly in the for loop. Then for each number in that range, append the number to the previously empty list.

Hope this helps! :sparkles:

Thanks for the wonderful advice!!! It works.