You are viewing a single comment's thread. Return to all comments →
def pangrams(s): # Write your code here alp='abcdefghijklmnopqrstuvwxyz' l=len(set(s.lower().replace(" ",""))) # print(l) for i in alp: if i in set(s.lower().replace(" ","")) and l==26: 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 →