Count occurrences of an element in a list in Python Last Updated : 21 Oct, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report A common task when working with lists is to count how many times a specific element appears. In Python, we have several ways to count occurrences of an element using both built-in and custom methods.The simplest and most straightforward way to count occurrences of an element in a list is by using the count() method, which is a built-in method specifically designed for this task.Using count()In this example, we have a list and we are counting the occurrences of 2 and 3 using the count() method. Python a = [1, 3, 2, 6, 3, 2, 8, 2, 9, 2, 7, 3] # Count occurrences of 2 print(a.count(2)) # Count occurrences of 3 print(a.count(3)) Output4 3 Below are the other methods by which we can use to count the occurrences of an element in a list.Table of ContentUsing a LoopUsing countOf()Using Counter from collectionsUsing a LoopIn this method, iterate over the list using loop (for loop) and keep a counter variable to count the occurrences. Each time we find the target element, increase the counter by one. Python a = [1, 3, 2, 6, 3, 2, 8, 2, 9, 2, 7, 3] # Initial count is zero count = 0 # Iterate over the list for val in a: # If num is equal to 3 if val == 3: # Increase the counter count += 1 print(count) Output3 Using countOf()The countOf() function is equivalent to using the count() method of a list, but it comes from the operator module.It takes two arguments: the sequence in which we want to count and the value that we want to count. Let's look at the syntax given below:import operatoroperator.countOf(sequence, value)Using Counter from collectionsThe Counter class from the collections module can count occurrences for all elements and returns the results as a dictionary. Let's see how can we use this to count occurrence of a single element. Python from collections import Counter a = [1, 3, 2, 6, 3, 2, 8, 2, 9, 2, 7, 3] # Create a counter objects res = Counter(a) # Get count of 3 print(res[3]) Output3 Note: This method is not efficient for finding occurrence of single element because it requires O(n) extra space to create a new dictionary. But this method is very efficient when finding all occurrences of elements.Related Articles:Python String count() MethodCount of elements matching particular condition in PythonCount Occurrences of Specific Value in Pandas Column Comment More infoAdvertise with us Next Article Count occurrences of a character in string in Python C chinmoy lenka Follow Improve Article Tags : Python python-list Python list-programs Practice Tags : pythonpython-list Similar Reads Python | Count occurrences of an element in a Tuple In this program, we need to accept a tuple and then find the number of times an item is present in the tuple. This can be done in various ways, but in this article, we will see how this can be done using a simple approach and how inbuilt functions can be used to solve this problem. Examples: Tuple: 3 min read Count the Number of Null Elements in a List in Python In data analysis and data processing, It's important to know about Counting the Number of Null Elements. In this article, we'll explore how to count null elements in a list in Python, along with three simple examples to illustrate the concept. Count the Number of Null Elements in a List in PythonIn 3 min read Python - Find all elements count in list In Python, counting the occurrences of all elements in a list is to determine how many times each unique element appears in the list. In this article, we will explore different methods to achieve this. The collections.Counter class is specifically designed for counting hashable objects. It provides 3 min read Count occurrences of a character in string in Python We are given a string, and our task is to count how many times a specific character appears in it using Python. This can be done using methods like .count(), loops, or collections.Counter. For example, in the string "banana", using "banana".count('a') will return 3 since the letter 'a' appears three 2 min read Count number of lines in a text file in Python Counting the number of characters is important because almost all the text boxes that rely on user input have a certain limit on the number of characters that can be inserted. For example, If the file is small, you can use readlines() or a loop approach in Python. Input: line 1 line 2 line 3 Output: 3 min read Python | Counter Objects | elements() Counter class is a special type of object data-set provided with the collections module in Python3. Collections module provides the user with specialized container datatypes, thus, providing an alternative to Python's general-purpose built-ins like dictionaries, lists, and tuples. Counter is a sub-c 6 min read Like