Answers for "how to rotate a list in python use a return"

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

Code answers related to "how to rotate a list in python use a return"

Python Answers by Framework

Browse Popular Code Answers by Language