exercism/python/pangram/pangram.py

7 lines
157 B
Python

def is_pangram(inp):
inp = inp.lower()
for i in "abcdefghijklmnopqrstuvwxyz":
if inp.count(i) == 0:
return False
return True