Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1line solution in Clear category for All Upper I by wooilkim
def is_all_upper(text: str) -> bool:
return True if text == text.upper() else False
May 25, 2021
Comments: