t408.py 407 B

123456789101112131415161718192021
  1. def enumerate_helper(iterable,start=0):
  2. x = []
  3. for i in enumerate(iterable,start):
  4. x.append(i)
  5. print x
  6. # list
  7. enumerate_helper([1,2,3,4])
  8. enumerate_helper([1,2,3,4],10)
  9. # string
  10. enumerate_helper("hello")
  11. enumerate_helper("WORLD",2)
  12. # tuple
  13. enumerate_helper((1,2,3,))
  14. enumerate_helper((1,2,3,),-1)
  15. # dict
  16. enumerate_helper({1:'a',2:'b',3:'c'})
  17. enumerate_helper({1:'a',2:'b',3:'c'},5)