Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
text = text.replace(' ','') solution in Clear category for All Upper I by SHAKHRUKHIRGASHEV
def is_all_upper(text: str) -> bool:
text = text.replace(' ','')
if text.isupper() or text.isdigit() or text == '' :
return True
return False
June 14, 2022