Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
ext.upper() == text solution in Clear category for All Upper I by Ivan_Marc
def is_all_upper(text: str) -> bool:
# your code here
return text.upper() == text
April 20, 2020