1 line solution in Clear category for All Upper II by wooilkim
def is_all_upper(text: str) -> bool: return text.isupper()
June 8, 2021