summaryrefslogtreecommitdiff
path: root/progs/a127.py
blob: ca33f0994fbe962c9d30df07313785cfc3e3bb4b (plain)
1
2
3
def sum_list(lst1,lst2):
  res_list = [lst1[i] + lst2[i] for i in range(len(lst1))] 
  return res_list