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