Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by kazuki.h
from string import ascii_lowercase
def check_pangram(text):
check = ascii_lowercase
for s in text.lower(): check = check.replace(s, "")
return check == ""
Dec. 27, 2021
Comments: