Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple 1-liner solution in Clear category for All Upper I by thealfest1
def is_all_upper(text: str) -> bool:
return text == text.upper()
March 10, 2020
Comments: