Answers for "enumerate in python3"

12

enumerate python

for index,char in enumerate("abcdef"):
  print("{}-->{}".format(index,char))
  
0-->a
1-->b
2-->c
3-->d
4-->e
5-->f
Posted by: Guest on May-21-2020
0

enumerate in python

enumerate(iterable, start=0)

Parameters:
Iterable: any object that supports iteration
Start: the index value from which the counter is 
              to be started, by default it is 0
Posted by: Guest on March-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language