Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Pangram by sebastian.okseniuk
import string
def check_pangram(text):
return all(c in text.lower() for c in string.ascii_lowercase)
Dec. 2, 2015