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()): … Read more