Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by darasg2008
def check_pangram(text):
text=text.lower()
alphabet="abcdefghijklmnopqrstuvwxyz"
for i in alphabet:
if i not in text:
return False
return True
Nov. 5, 2016