2017-08-15
This commit is contained in:
parent
88b47de8c8
commit
297afbe06b
@ -1,6 +1,6 @@
|
|||||||
def is_pangram(inp):
|
def is_pangram(inp):
|
||||||
inp = inp.lower()
|
inp = inp.lower()
|
||||||
for i in "abcdefghijkklmnopqrstuvwxyz":
|
for i in "abcdefghijklmnopqrstuvwxyz":
|
||||||
if inp.count(i) == 0:
|
if inp.count(i) == 0:
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
Loading…
Reference in New Issue
Block a user