Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by Daniel_Pereira
def check_pangram(text):
return len(
set([c for c in text.lower() if c in 'abcdefghijklmnopqrstuvwxyz'])
) >= 26
June 7, 2015