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