how to check if a letter is uppercase python code example
Example 1: python method to check for uppercase character
a="DEMO"
print(a.isupper())
Example 2: python how to detect if uppercase is used in input
isupper()
islower()
Example 3: how to check if letter is uppercase python
how to check if letter is uppercase python