Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
set intersection solution in Clear category for Pangram by lxf42
from string import ascii_lowercase
def check_pangram(text):
'''
is the given text is a pangram.
'''
return len(set(ascii_lowercase).intersection(set(text.lower()))) == 26
Feb. 27, 2022
Comments: