Enumerate() in Python Last Updated : 20 Jan, 2025 Comments Improve Suggest changes Like Article Like Report enumerate() function adds a counter to each item in a list or other iterable. It turns the iterable into something we can loop through, where each item comes with its number (starting from 0 by default). We can also turn it into a list of (number, item) pairs using list().Let's look at a simple example of an enumerate() with a list. Python a = ["Geeks", "for", "Geeks"] # Iterating list using enumerate to get both index and element for i, name in enumerate(a): print(f"Index {i}: {name}") # Converting to a list of tuples print(list(enumerate(a))) OutputIndex 0: Geeks Index 1: for Index 2: Geeks [(0, 'Geeks'), (1, 'for'), (2, 'Geeks')] Explanation: enumerate(a) provides both the index (i) and the element (name) during iteration.Table of ContentSyntax of enumerate() methodUsing a Custom Start IndexUsing Enumerate object in Loops Accessing the Next Element Syntax of enumerate() methodenumerate(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 Return: Returns an iterator with index and element pairs from the original iterable Using a Custom Start IndexBy using enumrate() starts indexing from 0, we can customize this using the start parameter. if want the index to begin at value other than 0. Python a = ["geeks", "for", "geeks"] #Looping through the list using enumerate # starting the index from 1 for index, x in enumerate(a, start=1): print(index, x) Output1 geeks 2 for 3 geeks Using Enumerate object in Loops Enumerate() is used with a list called a. It first prints tuples of index and element pairs. Then it changes the starting index while printing them together. Finally, it prints the index and element separately, each on its own line. Python a = ["Geeks", "for", "Geeks"] # printing the tuples in object directly for ele in enumerate(a): print (ele) Output(0, 'Geeks') (1, 'for') (2, 'Geeks') Accessing the Next Element In Python, the enumerate() function serves as an iterator, inheriting all associated iterator functions and methods. Therefore, we can use the next() function and __next__() method with an enumerate object. Python a = ['Geeks', 'for', 'Geeks'] # Creating an enumerate object from the list 'a' b = enumerate(a) # This retrieves the first index-element pair from 'b' nxt_val = next(b) print(nxt_val) Output(0, 'Geeks') We can call next() again to retrieve subsequent elements: Python next_element = next(b) print(b) Output: (1, 'for') Each time the next() is called, the internal pointer of the enumerate object moves to the next element, returning the corresponding tuple of index and value. Comment More infoAdvertise with us Next Article Enumerate() in Python H Harshit Agrawal Improve Article Tags : Python Python-Built-in-functions Practice Tags : python Similar Reads Python Built in Functions Python is the most popular programming language created by Guido van Rossum in 1991. It is used for system scripting, software development, and web development (server-side). Web applications can be developed on a server using Python. Workflows can be made with Python and other technologies. Databas 6 min read abs() in Python The Python abs() function return the absolute value. The absolute value of any number is always positive it removes the negative sign of a number in Python. Example:Input: -29Output: 29Python abs() Function SyntaxThe abs() function in Python has the following syntax:Syntax: abs(number)number: Intege 3 min read Python - all() function The Python all() function returns true if all the elements of a given iterable (List, Dictionary, Tuple, set, etc.) are True otherwise it returns False. It also returns True if the iterable object is empty. Sometimes while working on some code if we want to ensure that user has not entered a False v 3 min read Python any() function Python any() function returns True if any of the elements of a given iterable( List, Dictionary, Tuple, set, etc) are True else it returns False. Example Input: [True, False, False]Output: True Input: [False, False, False]Output: FalsePython any() Function Syntaxany() function in Python has the foll 5 min read ascii() in Python Python ascii() function returns a string containing a printable representation of an object and escapes the non-ASCII characters in the string using \x, \u or \U escapes. It's a built-in function that takes one argument and returns a string that represents the object using only ASCII characters. Exa 3 min read bin() in Python Python bin() function returns the binary string of a given integer. bin() function is used to convert integer to binary string. In this article, we will learn more about Python bin() function. Example In this example, we are using the bin() function to convert integer to binary string. Python3 x = b 2 min read bool() in Python In Python, bool() is a built-in function that is used to convert a value to a Boolean (i.e., True or False). The Boolean data type represents truth values and is a fundamental concept in programming, often used in conditional statements, loops and logical operations.bool() function evaluates the tru 3 min read Python bytes() method bytes() method in Python is used to create a sequence of bytes. In this article, we will check How bytes() methods works in Python. Pythona = "geeks" # UTF-8 encoding is used b = bytes(a, 'utf-8') print(b)Outputb'geeks' Table of Contentbytes() Method SyntaxUsing Custom EncodingConvert String to Byte 3 min read chr() Function in Python chr() function returns a string representing a character whose Unicode code point is the integer specified. chr() Example: Python3 num = 97 print("ASCII Value of 97 is: ", chr(num)) OutputASCII Value of 97 is: a Python chr() Function Syntaxchr(num) Parametersnum: an Unicode code integerRet 3 min read Python dict() Function dict() function in Python is a built-in constructor used to create dictionaries. A dictionary is a mutable, unordered collection of key-value pairs, where each key is unique. The dict() function provides a flexible way to initialize dictionaries from various data structures.Example:Pythond=dict(One 4 min read Like