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 trialLuke Tate
Courses Plus Student 2,256 PointsHow do I append a list to a range?
For some reason, I'm struggling to append a range method in a list.
my_list = []
for i in my_list:
range[0,10,1]
my_list.append([1])
1 Answer
Jennifer Nordell
Treehouse TeacherHi 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!
Luke Tate
Courses Plus Student 2,256 PointsLuke Tate
Courses Plus Student 2,256 PointsThanks for the wonderful advice!!! It works.