Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All Upper I by Wakko_Warner
def is_all_upper(text: str) -> bool:
# your code here
return len(text.strip('1234567890 ')) == 0 or text.isupper()
Nov. 17, 2020
Comments: