Python program to Count alphabets, digits, special char in string

python program to Count Alphabets, Digits, Special Char In String

In this tutorial, we are going to learn python program to count the number of alphabets, digits, and special characters present in an input string from the user. Problem Statement For any input string, we are going to print the number of alphabets (‘a’-‘z’ and ‘A’-‘Z’), the number of digits(0-9), and the number of special … Read more