mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-06 01:14:56 -06:00
7 lines
200 B
Python
7 lines
200 B
Python
import string
|
|
charset = string.ascii_lowercase
|
|
|
|
def is_pangram(sentence):
|
|
dictionary = {char : True if char in sentence.lower() else False for char in charset}
|
|
return all(dictionary.values())
|