how to check if a certain character in string in python 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