Answers for "what enumerate do in python"

5

enumerate python

#Enumerate in python
l1 = ['alu','noodles','vada-pav','bhindi']
for index, item in enumerate(l1):
    if index %2 == 0:
        print(f'jarvin get {item}')
Posted by: Guest on September-03-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