circular list rotation in python
Python Program to get list size n and n elements of list, rotate the elements of list in left side for m times.
Sample Input 1:
5 5 7 9 3 1 2
Sample Output 1:
9 3 1 5 7
Program or Solution
l=list(map(int,input("Enter numbers:").split(" ")))
r=int(input("Roatations?:"))
for i in range(0,r):
temp=l[0]
for j in range(0,len(l)-1):
l[j]=l[j+1]
l[len(l)-1]=temp
print(l)
Program Explanation
repeat the below steps for r times: store the l[0] in temp temp=l[0] move all elements located in 1 to len(l)-1 to its previous location l[j]=l[j+1] store the temp in l[len(l)-1] l[len(l)-1]=tempComments
Related Programs
- list input in python
- sum of list in python | without using built-in function
- Average of list in python | without using built-in function
- linear search in python
- largest element in the list python | without using built-in function
- smallest element in the list python | without using built-in function
- Print all the numbers which are less than given key element from a given list.
- delete element in list python
- Revese the elements in list python
- Reverse the first half of list elements in python
- Reverse the second half of list elements in python
- list sort python
- list sort descending order python
- Python Program to sort half of the list elements in ascending order and next half in descending order.
- merging two lists in python
- Python Program to replace every element with the greatest element on right side
coming Soon
coming Soon