2017-08-15

This commit is contained in:
Brian Buller 2017-08-15 10:11:51 -05:00
parent 88b47de8c8
commit 297afbe06b
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
def is_pangram(inp):
inp = inp.lower()
for i in "abcdefghijkklmnopqrstuvwxyz":
for i in "abcdefghijklmnopqrstuvwxyz":
if inp.count(i) == 0:
return False
return True