Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First: ascii_uppercase and set solution in Clear category for Pangram by leggewie
from string import ascii_uppercase
def check_pangram(text):
'''
is the given text a pangram.
'''
# test if all letters in ascii_uppercase are present in the text
return ascii_uppercase in "".join(sorted(set(text.upper())))
July 2, 2021