str.isupper() solution in Clear category for All Upper II by rossras
def is_all_upper(text: str) -> bool: return text.isupper()
March 14, 2020
Comments: