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