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 Adrian_Sanz_Wallace
def is_all_upper(text: str) -> bool:
return text == text.upper()
March 15, 2021
Comments: