use upper() solution in Clear category for All Upper I by kdim
def is_all_upper(text: str) -> bool: return text.upper()==text
Jan. 10, 2021
Comments: