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 tokiojapan55
def is_all_upper(text: str) -> bool:
# return False if len(text)==0 else text==text.upper()
return text==text.upper()
June 22, 2020