Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All Upper II by eegoldstraw
def is_all_upper(text: str) -> bool:
return text.isupper() #return true if entire string is uppercase, otherwise return false
March 30, 2020