Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Comprehension solution in Clear category for Pangram by Wartem
from string import ascii_lowercase
def check_pangram(text):
return not [c for c in ascii_lowercase if c not in text.lower()]
Aug. 3, 2022
Comments: