I would like to create a list from 0 to 11 with starting point 6 and that runs all the range of numbers to obtain the following output:
[6,7,8,9,10,11,0,1,2,3,4,5]
I would like to know if there was an array creation routine to do so: Something like:
range(start=7,stop=6,step=1)