Login and get codingA pangram, according to the Oxford English Dictionary, is a sentence or verse that contains all of the letters of the alphabet.
Given a string containing only English letters, write a function that returns
True
if sentence is a pangram orFalse
otherwise.Make sure to remove any whitespace and lowercase the string.
Example:
>>> from pangram import validate_pangram
>>> sentence = "The quick brown fox jumps over a lazy dog"
>>> validate_pangram(sentence)
TrueExample 2:
>>> from pangram import validate_pangram
>>> sentence = "PYBITES IS A COMMUNITY OF PYTHON CODERS"
>>> validate_pangram(sentence)
FalseKeep calm and code in Python!
39 out of 41 users completed this Bite.
Will you be the 40th person to crack this Bite?
Resolution time: ~25 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 3.0 on a 1-10 difficulty scale.
» You can do it! 😌