First solution in Clear category for All Upper II by StanislauL
def is_all_upper(text: str) -> bool: return text.isupper()
Aug. 24, 2020