How to Count Number of Digits Characters in Python String?

09-Mar-2023

.

Admin

How to Count Number of Digits Characters in Python String?

Hi Dev,

In this post, we will learn how to count number of digits characters in python string. Here you will learn python count digits characters in string. you can understand a concept of python count number of digits characters in string. you can see python string count digits characters. you will do the following things for python count number of digits characters in string.

In this examples, i will create countDigits() function to count number of digit characters from string in python. So, without further ado, let's see simple examples: You can use these examples with python3 (Python 3) version.

Python String Count Number of Digits Characters


main.py

# Function to Count Digits in Python

def countDigits(string):

digChar= 0

for i in range(0, len(string)):

ch = string[i]

if (string[i].isdigit()):

digChar += 1

else:

continue

return digChar

# Getting Count Number of Special Character

string = "Hello, 00007 Developer"

print("Total Digits in String:",countDigits(string))

Output:

5

#Python