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 String encode()
Python String istitle()
Intelligent Projects Using Python - Santanu Pattanayak
Python ascii()
Python String split()
Python String rjust()
Python break and continue
Python super()
Python String splitlines()
Python List copy()
Python Set copy()
Python Program to Find the Size (Resolution) of a Image
Python oct()
Python Program to Convert Kilometers to Miles
Python slice()
Python String strip()
Python Deep Learning - Valentino Zocca & Gianmario Spacagna & Daniel Slater & Peter Roelants
Python Keywords and Identifiers
Python Program to Count the Occurrence of an Item in a List
Python Program to Sort a Dictionary by Value
Python Custom Exceptions
Python Program to Get a Substring of a String
Python repr()
Python abs()
Python Program to Iterate Over Dictionaries Using for Loop
Python Dictionary get()
Python String isalpha()
Remove All Occurrences of a Specific Value from a List
Deep Learning with Python - Francois Chollet
Python Program to Count the Number of Occurrence of a Character in String
Python Program to Iterate Through Two Lists in Parallel
Building Machine Learning Systems with Python - Willi Richert & Luis Pedro Coelho