Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
[Convert To Uppercase and Compare] [Simple and Concise Solution] solution in Clear category for All Upper I by sanddro
def is_all_upper(text: str) -> bool:
return text == text.upper()
Feb. 6, 2025