Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by spoty
from string import ascii_lowercase
def check_pangram(text):
return all(c in text.lower() for c in ascii_lowercase)
Jan. 28, 2015
Comments: