Table of Contents
The count() method returns the number of times the specified element appears in the tuple.
The syntax of the count()
method is:
tuple.count(element)
1. count() Parameters
The count()
method takes a single argument:
- element – the element to be counted
2. Return value from count()
The count()
method returns the number of times element appears in the tuple.
3. Example 1: Use of Tuple count()
# vowels tuple 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
4. Example 2: Count List and Tuple Elements Inside Tuple
# random tuple 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 min()
Python Dictionary fromkeys()
Python Program to Sort Words in Alphabetic Order
Python Deep Learning Cookbook - Indra den Bakker
Python zip()
Python Numbers, Type Conversion and Mathematics
Python hash()
Python Set clear()
Python Program to Find the Size (Resolution) of a Image
How to get current date and time in Python?
Python delattr()
Python Program to Extract Extension From the File Name
Python pass statement
Python Program to Get the Last Element of the List
Python Directory and Files Management
Deep Learning with Python - A Hands-on Introduction - Nikhil Ketkar
Python String splitlines()
Python Program to Display Fibonacci Sequence Using Recursion
Python String isalnum()
Python String isspace()
Python Program to Check If Two Strings are Anagram
Python id()
Python Type Conversion and Type Casting
Python Errors and Built-in Exceptions
Python pow()
Python Recursion
Python Data Analytics with Pandas, NumPy and Matplotlib - Fabio Nelli
Python Data Structures and Algorithms - Benjamin Baka
Python Dictionary get()
Python hasattr()
Python Set issuperset()
Python Global Keyword