You are viewing a single comment's thread. Return to all comments →
def pangrams(s):
alphabet = list(map(chr, range(97, 123))) for i in alphabet: if i not in s.lower(): return 'not pangram' return '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 →
def pangrams(s):