Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner solution in Clear category for All Upper I by Stensen
is_all_upper = lambda t: t.isupper() or not t.strip() or bool(__import__('re').search('\d+', t))
Sept. 20, 2020