You are viewing a single comment's thread. Return to all comments →
def pangrams(s): # Write your code here if not (set(string.ascii_lowercase) - set(s.lower())): return "pangram" return "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 →