Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
All Upper I solution in Clear category for All Upper I by ahin9312
def is_all_upper(text: str) -> bool:
for i in text:
if i.islower(): return False
return True
April 4, 2020
Comments: