First solution in Clear category for All Upper I by StanislauL
def is_all_upper(text: str) -> bool: return (text+'A').isupper()
Aug. 21, 2020