Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Pangram solution in Clear category for Pangram by Damian_Horna
import string
wszystkie = "".join(string.ascii_lowercase)#lista wszystkich liter alfabetu
def check_pangram(text):
podane=set([ch for ch in text.lower() if ch in string.ascii_letters])
#lista wszystkich liter w tekscie
return len(wszystkie)==len(podane)
Oct. 24, 2016