You are viewing a single comment's thread. Return to all comments →
Simple for loop :
def pangrams(s): alph = "abcdefghijklmnopqrstuvwxyz" for i in alph: if i not in s.lower(): return "not pangram" 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 →
Simple for loop :