exercism/python/pangram/pangram.py

7 lines
157 B
Python
Raw Normal View History

2017-08-13 14:28:55 +00:00
def is_pangram(inp):
inp = inp.lower()
2017-08-15 15:11:51 +00:00
for i in "abcdefghijklmnopqrstuvwxyz":
2017-08-13 14:28:55 +00:00
if inp.count(i) == 0:
return False
return True