Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All Upper I by juestr
def is_all_upper(text: str) -> bool:
return not any(map(str.islower, text))
Aug. 5, 2021
Comments: