Table of Contents
In this tutorial, we will learn about the Python List count() method with the help of examples.
The count() method returns the number of times the specified element appears in the list.
Example
# create a list
numbers = [2, 3, 5, 2, 11, 2, 7]
# check the count of 2
count = numbers.count(2)
print('Count of 2:', count)
# Output: Count of 2: 3
1. Syntax of List count()
The syntax of the count() method is:
list.count(element)
2. count() Parameters
The count() method takes a single argument:
- element – the element to be counted
3. Return value from count()
The count() method returns the number of times element appears in the list.
4. Example 1: Use of count()
# vowels list
vowels = ['a', 'e', 'i', 'o', 'i', 'u']
# count element 'i'
count = vowels.count('i')
# print count
print('The count of i is:', count)
# count element 'p'
count = vowels.count('p')
# print count
print('The count of p is:', count)
Output
The count of i is: 2 The count of p is: 0
5. Example 2: Count Tuple and List Elements Inside List
# random list
random = ['a', ('a', 'b'), ('a', 'b'), [3, 4]]
# count element ('a', 'b')
count = random.count(('a', 'b'))
# print count
print("The count of ('a', 'b') is:", count)
# count element [3, 4]
count = random.count([3, 4])
# print count
print("The count of [3, 4] is:", count)
Output
The count of ('a', 'b') is: 2
The count of [3, 4] is: 1
Related posts:
Python classmethod()
Python __import__()
Convert a Map to an Array, List or Set in Java
Intelligent Projects Using Python - Santanu Pattanayak
Python Program to Remove Duplicate Element From a List
How to Find an Element in a List with Java
Python Program to Randomly Select an Element From the List
Python Closures
Python Program to Find Sum of Natural Numbers Using Recursion
Python String rsplit()
Python Program to Find Factorial of Number Using Recursion
Python Program to Create a Long Multiline String
Python String expandtabs()
Python Program to Check If a String Is a Number (Float)
Python getattr()
Python Program to Convert String to Datetime
Python String ljust()
Python Program to Create a Countdown Timer
Python id()
Python @property decorator
Python Program to Find Armstrong Number in an Interval
Python Program to Delete an Element From a Dictionary
Python sleep()
Python Program to Convert Celsius To Fahrenheit
Python max()
Python String replace()
Python bytearray()
Python Sets
Python compile()
Python Program to Split a List Into Evenly Sized Chunks
Python Dictionary fromkeys()
Using a List of Values in a JdbcTemplate IN Clause