Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner solution in Creative category for All Upper II by Stensen
is_all_upper = lambda t: t==t.upper() if __import__('re').search('[A-z]+', t) and t.strip() else False
Sept. 21, 2020
Comments: