Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for All Upper I by Leonid_Semeykin
def is_all_upper(text: str) -> bool:
return True if text.upper()==text else False
June 6, 2020