Find the total number of digits in a file

In this program, we will count the the total number of digits in a file.

Steps to solve the program
  1. Create a variable to count the total number of digits and assign its value equal to 0.
  2. Open the desired file using open() in reading mode.
  3. Use for loop iterate over the data.
  4. If the element is a digit then add 1 to the variable that we have created.
  5. Use isdigit() for this purpose.
  6. Print the output.
				
					f1=open("file1.txt","r")
data=f1.read()

is_digit = 0

for i in data:
    if i.isdigit():
        is_digit+=1
        
print("NUmber of digits: ",is_digit)
				
			

Output :

				
					3
				
			

count the total number of characters in a file

find the total number of Uppercase letters in a file

Leave a Comment