Second solution in Clear category for All Upper I by wbl4126
def is_all_upper(text: str) -> bool: return text == text.upper()
March 31, 2020
Comments: