• + 0 comments

    python3 1 line solution:

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