In Python I have an array of length x.
let array = [0, 1, 2, 3, 4, 5]
I want to get from the array above the result like this: [1, 2, 3, 4, 5, 0]
So basically i wan't to skip the first term and loop it after the array ends and stop on the last skipped term. I'm pretty new to python, so couldn't figure it out on on my own + googling didn't help.
Help please, Much appreciated!