Easy solution in Clear category for All Upper II by Adrian_Sanz_Wallace
def is_all_upper(text: str) -> bool: return text.isupper()
March 23, 2021