You are viewing a single comment's thread. Return to all comments →
python 3
def pangrams(s): return "pangram" if 26 == len(set([x for x in s.lower() if x.isalpha()])) else "not pangram"
Seems like cookies are disabled on this browser, please enable them to open this website
Pangrams
You are viewing a single comment's thread. Return to all comments →
python 3