how to uppercase a letter in python code example
Example 1: uppercase string python
string.lower()
string.upper()
Example 2: python is uppercase
# checking for uppercase characters
string = 'GEEKSFORGEEKS'
print(string.isupper()) # True
string = 'GeeksforGeeks'
print(string.isupper()) # False