You are viewing a single comment's thread. Return to all comments →
def pangrams(s): s = set(s.lower().replace(" ", "")) if(len(s) == 26): return "pangram" else: return "not pangram" s = input() result = pangrams(s) print(result)
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 →
For Python3 Platform
I wrote the code from scratch just to get more practice