Its a function that checks whether a string is a Pangram or not
so if str1 == 'the quick brown fox jumps over the lazy dog' the function will return True since the string contains every letter in the alphabet.
import string
def ispangram(str1, alphabet=string.ascii_lowercase):
    for char in set(alphabet): 
        if char in str1:
            return True
        else:
            return False
 
     
     
     
     
     
     
     
    