In this article, we will discuss the concept of the Code to Count Alphabets, Numeric, Special character and Space in a string
In this post, we are going to learn how to count Alphabets, Numeric, Special character and space of the given String in Python programming language
The program allows the user to enter a String and then it counts and display the total number of Alphabets, Numeric, Special character and Space of the given string using for loop in Python programing language
Program 1
#Python code to Count Alphabets, Special character Numeric values and space str=input("Please enter a string: ")#take input from the user alphabets,num,special,space=0,0,0,0;#variable declaration and initilization for i in range(len(str)): if(str[i]>='A' and str[i]<='Z') or (str[i]>='a' and str[i]<='z'): #check Alphabets letters alphabets+=1 elif(str[i]>='0' and str[i]<='9'):#check numeric value num+=1 elif(str[i]==' '):#check space space+=1 else: special+=1 print("Alpabets letters: ",alphabets) print("\nnumbers: ",num) print("\nSpace: ",space) print("\nSpecial characters: ",special)
When the above code is executed, it produces the following result
Please enter a string: Your code:code4coding.com Alphabet letters: 21 numbers: 1 Space: 1 Special characters: 2
Approach
The program allows the user to enter a String and then it counts and display the total number of Alphabets, Numeric, Special character and Space of the given string using the built-in function in Python programing language
Program 2
#Python code to Count Alphabets, Special character Numeric values and space str=input("Please enter a string: ")#take input from the user alphabets,num,special,space=0,0,0,0;#variable declaration and initilization for i in range(len(str)): if(str[i].isalpha()): #check Alphabets letters alphabets+=1 elif(str[i].isdigit()):#check numeric value num+=1 elif(str[i].isspace()):#check space space+=1 else: special+=1 print("Alpabets letters: ",alphabets) print("\nnumbers: ",num) print("\nSpace: ",space) print("\nSpecial characters: ",special)
When the above code is executed, it produces the following result
Please enter a string: code4coding.com:For learners Alphabets letters: 24 numbers: 1 Space: 1 Special characters: 2
Suggested for you
Similar post
C++ code to count the total number of characters in the given string
C code to count the total number of characters in the given string
Python code to count the total number of characters in the given string
Java program to count the total number of characters in the given string including space
C program to count the total number of characters in the given string including space
C++ program to count the total number of characters in the given string including space
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…