if string is uppercase python code example

Example 1: python to uppercase

text = "Random String"
text = text.upper() #Can also do 
text = upper(text)
print(text)

>> "RANDOM STRING"

Example 2: python is uppercase

# checking for uppercase characters
string = 'GEEKSFORGEEKS'
print(string.isupper())		# True
  
string = 'GeeksforGeeks'	
print(string.isupper())		# False

Example 3: python to uppercase

original = Hello, World!

#both of these work
upper = original.upper()
upper = upper(original)

Example 4: determine gievn input upper or lower case in python

# Python Program to check character is Lowercase or Uppercase
ch = input("Please Enter Your Own Character : ")

if(ch.isupper()):
    print("The Given Character ", ch, "is an Uppercase Alphabet")
elif(ch.islower()):
    print("The Given Character ", ch, "is a Lowercase Alphabet")
else:
    print("The Given Character ", ch, "is Not a Lower or Uppercase Alphabet")