First solution in Clear category for All Upper I by Krischtopp
def is_all_upper(text: str) -> bool: return text == text.upper()
Jan. 11, 2021