Python Program to check character is Uppercase or not

Write a Python program to check character is Uppercase or not using isupper() function and ASCII values with a practical example.

Python Program to check character is Uppercase using isupper function

In this Python example, we use an isupper string function to check whether a given character is Uppercase or not.

ch = input("Please Enter Your Own Character : ")

if(ch.isupper()):
    print("The Given Character ", ch, "is an Uppercase Alphabet")
else:
    print("The Given Character ", ch, "is Not an Uppercase Alphabet")
Python Program to check character is Uppercase using isupper function

Python Program to find character is Uppercase or not

This python program allows a user to enter any character. Next, we are using If Else Statement to check whether the user given character is uppercase or not. Here, If statement (ch >= ‘A’ and ch <= ‘Z’) checks the character is greater than or equal to A, and less than or equal to Z if it is TRUE, it is an uppercase. Otherwise, it’s not an uppercase character.

ch = input("Please Enter Your Own Character : ")

if(ch >= 'A' and ch <= 'Z'):
    print("The Given Character ", ch, "is an Uppercase Alphabet")
else:
    print("The Given Character ", ch, "is Not an Uppercase Alphabet")
Python Program to check character is Uppercase or not 2

Verify character is Uppercase or not using ASCII Values

In this code, we are using ASCII Values to check the character is uppercase or not.

ch = input("Please Enter Your Own Character : ")

if(ord(ch) >= 65 and ord(ch) <= 90):
    print("The Given Character ", ch, "is an Uppercase Alphabet")
else:
    print("The Given Character ", ch, "is Not an Uppercase Alphabet")
Please Enter Your Own Character : p
The Given Character  p is Not an Uppercase Alphabet
>>> 
Please Enter Your Own Character : T
The Given Character  T is an Uppercase Alphabet