Isupper() solution in Clear category for All Upper II by Pavellver
def is_all_upper(text: str) -> bool: return text.isupper()
April 4, 2023
Comments: