Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Pangram by Adrian_Sanz_Wallace
import string
def check_pangram(text):
return string.ascii_lowercase in ''.join(sorted(set(text.lower())))
June 24, 2021
Comments: