Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by Alice_Parker-Louth
def check_pangram(text):
'''
is the given text is a pangram.
'''
# your code here
#lower case alphabet in ascii relate to 97-122
for x in range(97,123):
if chr(x) not in text.lower():
return False
return True
Oct. 28, 2019