Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
My first generator! solution in Clear category for Pangram by tigelane
def check_pangram(text):
return len(set(a.lower() for a in text if a.isalpha())) == 26
March 4, 2015
Comments: