First solution in Clear category for All Upper I by melitaele
def is_all_upper(text: str) -> bool: return text == text.upper()
April 9, 2021
Comments: