Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution solution in Clear category for Pangram by ludek.reif
import string
def check_pangram(text):
for i in string.ascii_lowercase:
if i not in text.lower():
return False
return True
Feb. 1, 2016