enumerate()
The syntax of enumerate() is:
enumerate() Parameters
The enumerate() method takes two parameters:
iterable - a sequence, an iterator, or objects that supports iteration
start (optional) - enumerate() starts counting from this number. If start is omitted, 0 is taken as start.
Return Value from enumerate()
The enumerate() method adds counter to an iterable and returns it. The returned object is a enumerate object.
Example 1: How enumerate() works in Python?
Example 2: Looping Over an Enumerate object
āļāļĩāđāļĄāļēāļāļāļāļ§āļēāļĄ : programiz
Last updated