summaryrefslogtreecommitdiff
path: root/progs/a741.py
blob: c7510f59a83abdf5477ee549f2e60d1a9a6a7fce (plain)
1
2
3
def move_first(test_list):
  test_list = test_list[-1:] + test_list[:-1]  
  return test_list