Answers for "shift list elements python"

5

shift elements in list python

#Shifts all elements one to the right and moves end value to the start

li=li[-1:]+li[:-1]
Posted by: Guest on March-05-2021
0

shift list elements

>>> import numpy
>>> a=numpy.arange(1,10) #Generate some data
>>> numpy.roll(a,1)
array([9, 1, 2, 3, 4, 5, 6, 7, 8])
>>> numpy.roll(a,-1)
array([2, 3, 4, 5, 6, 7, 8, 9, 1])
>>> numpy.roll(a,5)
array([5, 6, 7, 8, 9, 1, 2, 3, 4])
>>> numpy.roll(a,9)
array([1, 2, 3, 4, 5, 6, 7, 8, 9])
Posted by: Guest on April-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language