Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
No ascii_lowercase letters solution in Clear category for All Upper I by yoichi
import string
def is_all_upper(text: str) -> bool:
return all(c not in string.ascii_lowercase for c in text)
March 9, 2020
Comments: