Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
using chr on the lowercase text solution in Clear category for Pangram by new_hoschi
def check_pangram(text):
## chr(97)=='a', chr(122)=='z'
return all(chr(i) in text.lower() for i in range(97,123))
April 15, 2020