Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Pangram by dx2-66
def check_pangram(text):
'''
is the given text is a pangram.
'''
return len(set(text.lower()).difference(set("., !?-'/*%_<>$#@:;&=^~{}|()[]"))) == 26
April 22, 2022