Pangarm
def is_pangram(sentence):
filtered_sentence = filter(str.isalpha, sentence)
if len(set(filtered_sentence.lower())) == 26:
return True
else:
return False
INFO
def is_pangram(sentence):
filtered_sentence = filter(str.isalpha, sentence)
if len(set(filtered_sentence.lower())) == 26:
return True
else:
return False