• + 18 comments

    I can't offer you a one-liner, but these two lines will do fine:

    from collections import Counter
    print("pangram" if len(Counter(input().lower())) == 27 else "not pangram")