• + 0 comments

    For Python3 Platform

    I wrote the code from scratch just to get more practice

    def pangrams(s):
        s = set(s.lower().replace(" ", ""))
        
        if(len(s) == 26):
            return "pangram"
        else:
            return "not pangram"
    
    s = input()
    
    result = pangrams(s)
    
    print(result)