uppercase character 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: uppercase string python

string.lower()
string.upper()

Example 3: python is uppercase

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

Example 4: how to check case of string in python

string = 'iAmABoy'

for letter in string:
    print(letter)
    if letter.isupper():
        print('yes')
        break
        
o/p:-
  i
  A
  yes
  
happy coding ^^