isupper solution in Clear category for All Upper II by katnic
def is_all_upper(text: str) -> bool: return text.isupper()
Aug. 20, 2021