Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
pangram solution in Clear category for Pangram by tel575117646700
def check_pangram(text):
import string
return True if sum(1 for i in string.ascii_lowercase if i in text.lower()) == 26 else False
Nov. 29, 2020