Pangram
Lesson 2 of 12 in Coddy's Python Interview Series course.
Challenge
EasyWrite a function get_pangram that gets a string to check whether a string is a pangram or not. (Assume the string passed in does not have any punctuation).
a1- string
Note: A pangram is a sentence containing every letter of the alphabet.
Example: A quick brown fox jumps over the lazy dog.
And outputs print ''It is a Pangram'' otherwise "It is not a Pangram"
Example:
Input - abcdefgxyz
Expected Output - It is not a Pangram
Try it yourself
def get_pangram(a1):
# Write code here