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