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