You are viewing a single comment's thread. Return to all comments →
def pangrams(s): # Write your code here pre_str=s.strip() pre_str=pre_str.replace(' ','') pre_str=pre_str.lower() alpha=set(pre_str) if len(alpha)<26 : return 'not pangram' else: 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): # Write your code here pre_str=s.strip() pre_str=pre_str.replace(' ','') pre_str=pre_str.lower() alpha=set(pre_str) if len(alpha)<26 : return 'not pangram' else: return "pangram"