Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First - Pangram solution in Clear category for Pangram by AQiccl135
def check_pangram(t):
"""
This function tests if all lower-case latin letters are in a given text.
"""
return all([c in t.lower() for c in __import__('string').ascii_lowercase])
Feb. 6, 2015