# The program prompts the user for a string. # This string c…
# The program prompts the user for a string. # This string could be made up of any upper case letter, lower case letter, # digit, or others (such as symbols). The program must use a for-loop to # determine how many of each type is made up in the string. These values are then printed. Sample run: Enter a string: H!H0wAreY0u Uppercase letters: 4 Lowercase letters: 4 Digits: 2 Other: 1 Rubric: Correct for-loop creation (2pts) Correct use of strong functions (isupper, islower, isdigit) and if statements (3pts)