exercism/python/pangram/pangram.py
2017-08-13 09:28:55 -05:00

7 lines
158 B
Python

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