Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
All_Upper_2 solution in Uncategorized category for All Upper II by Elena_Korljukova
def is_all_upper(text: str) -> bool:
return text.isupper()
May 18, 2020
Comments: