Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by logicalladybuglifestyle
def check_pangram(text):
text = text.lower()
return len(set([i for i in text if i.isalpha()])) == 26
March 29, 2020