exercism/python/pangram/pangram.py

7 lines
176 B
Python
Raw Normal View History

2018-10-07 12:59:42 -04:00
from string import ascii_lowercase
def is_pangram(sentence):
for char in ascii_lowercase:
if char not in sentence.lower():
return False
return True