Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by alexandrov.net
import string
def check_pangram(text):
return all(c in text.lower() for c in string.ascii_lowercase)
Sept. 6, 2018