python check if word is uppercase code example
Example 1: python method to check for uppercase character
a="DEMO"
print(a.isupper())
Example 2: how to check if letter is uppercase python
how to check if letter is uppercase python
a="DEMO"
print(a.isupper())
how to check if letter is uppercase python