summaryrefslogtreecommitdiff
path: root/progs/a691.py
blob: 03d58df0e8c4476a465169295878490a6bda6923 (plain)
1
2
3
def rotate_left(list1,m,n):
  result =  list1[m:]+list1[:n]
  return result