using str.isupper solution in Clear category for All Upper I by erykcoapl
def is_all_upper(text: str) -> bool: return f'U{text}'.isupper()
March 4, 2021