Count() Function in Python with Syntax, Parameter and Examples - Scaler Topics (original) (raw)

Overview

The count() function of the python is used to count the frequency of the character or a substring in a string. It simply gives the count of occurrences as a return value.

Syntax of count() Function in Python

Python Count() function has following syntax:

Parameters of count() Fucntion in Python

Three parameters are accepted by the count() function of python while using strings:

Return Value of count() Fucntion in Python

Return Type: integer

It returns the number of occurrences of substring/character in a string.

Example of count() Fucntion in Python

Let's use count() function on strings to find the occurrence of any character.

Output

Explanation

What is the count() Function in Python?

Let's say you have a very long binary string(a string that only consists of 0's and 1's), and you have a tedious job of counting the number of occurrences of '1' in that string. Have you ever wondered how you would solve this long task within a single second? If you use Python Count() function to find the number of occurrences of '1' in that string, you get desired output within milliseconds.

The python count() function is an inbuilt function of python which is used to count the number of occurrences of a character or substring in the string. Count function is case-sensitive it means that 'a' & 'A' are not treated as the same.

Application of count() Function in Python

Python count() function is used with both string and array/list. When used with array and list, the count() function have a different syntax and parameter but the same return value.

More Examples

Example 1: Using Count Method with a Substring.

Let's use count() function on strings to find the occurrence of any of its substring(more than one character) in that string.

Output

Using count method on Strings in Python

Explanation

Example 2: Count method with Character in a Given Binary String

Let's use count() on strings to find the occurrence of any of its character in that binary string.

Output

Using Character in a Given Python String

Explanation

Example 3: Count method with Substring in a Given Binary String

Let's use count() on strings to find the occurrence of any of its substring(more than one character) in that string.

Output

Explanation

Example 4: Using Start Position Parameters

Let's use count() on strings to find the occurrence of any of its substring(more than one character) in that string by passing only one optional parameter start, for specifying the start position for finding the substring.

Output

Using Start Position Argument

Explanation

Example 5: Using End Position Parameters

Let's use count() function on strings to find the occurrence of any of its substring(more than one character) in that string by passing only one optional parameter end for specifying the end position till there we have to find the substring.

While we are only sending a single optional parameter end in count() function. We have to use start parameter as None to specify that we have to start counting from the start of the string.

Output

Using End Position Argument

Explanation

Example 6: Using both Optional Parameters

Let's use count() on strings to find the occurrence of any of its characters in that string by passing some additional optional parameters start & end as discussed earlier.

Output

Count Function in Python

Explanation

Conclusion

Read More: