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 book1978
# Taken from mission All Upper I
def is_all_upper(text: str) -> bool:
return text.replace(' ', '').isupper()
print("Example:")
print(is_all_upper("ALL UPPER"))
# These "asserts" are used for self-checking
assert is_all_upper("ALL UPPER") == True
assert is_all_upper("all lower") == False
assert is_all_upper("mixed UPPER and lower") == False
assert is_all_upper("") == False
print("The mission is done! Click 'Check Solution' to earn rewards!")
Jan. 25, 2023