Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One Line Conditional Check solution in Clear category for All Upper I by Abrar_Ahmed
def is_all_upper(text: str) -> bool:
return text.upper()==text
July 22, 2021
Comments: