I want to create multiple list by using a single loop with some condition. I know how to create one list which is done by appending, but here all the results of loop goes in one single list which is not what I want. So lets say we run a loop on first 100 numbers and I want to create multiple list where first list contains numbers till 5 , second from 6 to 10, third from 11 to 15 and so. This code is just for one list created by me.
number = range(100)
first = []
for i in number:
first.append(i)
first