# A string is a pangram if it contains all the characters of the alphabet ignoring case
from string import ascii_lowercase as asc_lower
def check_pangram(s):
return set(asc_lower) - set(s.lower()) == set([])
s = "The quick brown fox jumps over the lazy dog"
if (check_pangram(s) == True):
print("The string is a pangram")
else:
print("The string isn't a pangram")
'''
run:
The string is a pangram
'''