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 dearmordor
def is_all_upper(text: str) -> bool:
if text == text.upper():
return True
else:
return False
July 24, 2020