Simple solution in Clear category for All Upper II by Pouf
def is_all_upper(text: str) -> bool: return text.isupper()
June 28, 2020