count function in python

Today, We want to share with you count in python.In this post we will show you python count occurrences in list, hear for Program to Count the Number of Digits in a Number we will give you demo and example for implement.In this post, we will learn about Palindrome Number Program with an example.

Python String count() with EXAMPLES

players = [ 'Lokesh Rahul', 'virat kohali', 'rohit shrama', 'sikhar dhavan', 'Lokesh Rahul']

results = players.count('Lokesh Rahul')

print('Lokesh Rahul are :', results)

# define string
string = "Python is awesome, isn't it?"
totaltimeused = "is"

results1 = string.count(totaltimeused)

# print count
print("The count is:", results1)


list1 = [2,3,4,3,10,3,5,6,3,3]
results2 = list1.count(3)
print('The count of element: 3 is ', results2)

#search the substring
list2 = "PHP Python Java Laravel Python Anmgularjs"
str_len=len(list2)
results3 = list2.count("Python", 9 , str_len )
print(results3)

Results

Lokesh Rahul are : 2
The count is: 2
The count of element: 3 is  5
1

I hope you get an idea about python count number of occurrences in string.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment