Answers for "python rotate elements in list"

3

how to rotate the list in python

li=[1,2,3,4,5,6]
li[2:]+li[:2]    #rotates list left by 2
Posted by: Guest on June-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language