Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
oneliner solution in Creative category for All Upper I by tihenko
import re; is_all_upper = lambda t: True if re.sub('[0-9 A-Z]', '', t)=='' else False
April 15, 2020
Comments: