Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
2 solution in Speedy category for All Upper I by mambo417
def is_all_upper(text: str) -> bool:
up_text = text.upper()
if up_text == text :
return True
else:
return False
April 22, 2020
Comments: