Python pangram
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user