How to cyclically rotate the elements of int list right by one in Python

1 Answer

0 votes
lst = [4, 7, 2, 9, 3]
lst_size = len(lst)
   
last = lst[lst_size - 1]

for i in range(lst_size - 1, 0, -1):    
    lst[i] = lst[i - 1]

lst[0] = last
       
print(' '. join(str(i) for i in lst))    




'''
run:

3 4 7 2 9

'''

 



answered Jul 31, 2021 by avibootz
...