Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
readable solution in Clear category for All Upper I by dwsch.gaming
def is_all_upper(text: str) -> bool:
# your code here
list1 = []
list2 = []
for i in text:
list1.append(i)
list2.append(i.upper())
if list1 == list2:
return True
else:
return False
if __name__ == '__main__':
print("Example:")
print(is_all_upper('ALL UPPER'))
# These "asserts" are used for self-checking and not for an auto-testing
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('') == True
print("Coding complete? Click 'Check' to earn cool rewards!")
Nov. 27, 2020