Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
.lower, .upper solution in Clear category for All Upper II by kamjir
def is_all_upper(text: str) -> bool:
if text.lower() == text.upper():
return False
return text == text.upper()
Sept. 12, 2020