I'm new to programming, and I'm trying to solve this, how can I make a range for the elements in my list?
example:
list = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]
test = range(list[0], list[11])
print test
result:
[]
How to put the list elements from 0
to 11
in test
?