text = upper(text) solution in Clear category for All Upper I by GrGiGe
def is_all_upper(text: str) -> bool: return text == text.upper()
Aug. 6, 2025