Question: fill in the blanks The following program gets a string from the user and counts the number of all characters in the string except digits.
fill in the blanks
The following program gets a string from the user and counts the number of all characters in the string except digits.
=====================================
Sample Run
Enter a string: MEK1300 - Python
Number of character(s) except digits: 12
=====================================

string = input ("Enter a string:") character_count = ### Initialize the variable for in ###Loop over each character in the string if ### Check if the character is a digit or not character_count = ### counter increment print ("Number of character(s) except digits: ", character_count)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
