Python pangram

This commit is contained in:
Brian Buller 2017-08-13 09:28:55 -05:00
parent e3178b57ad
commit d9b6cf9d91
1 changed files with 6 additions and 2 deletions

View File

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