text == text.upper() solution in Clear category for All Upper I by Olpag
def is_all_upper(text): return text == text.upper()
March 9, 2020