Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All Upper II by wbl4126
def is_all_upper(text: str) -> bool:
return any([*map(str.isupper, text)]) and not any([*map(str.islower, text)])
April 1, 2020