Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Pangram by Kacper_Kapela
"""
Pangram to takie "krótkie" zdanie ,które zawiera wszystkie litery jakiegoś alfabetu np. polskiego
W tym zadaniu mamy sprawdzić czy dane zdanie posiada wszystkie litery alfabetu (A-Z)
Jeśli tak wypisujemy True jesli nie to False
"""
'''
Deklaruje sobie nowa zmienna do ktorej wkladam zbior elementow (set()) czyli
litery znajdujace sie w teksie wypisanym przez uzytkownika'''
def check_pangram(text):
uzyte_litery_w_tekscie=set(x for x in text.lower() if x>='a' and x<= 'z')
return len(uzyte_litery_w_tekscie)==26
"""
Jezeli ilosc tych literek bedzie rowna 26 czyli tyle ile jest w alfabecie A-Z
to program wypisze TRUE
"""
if __name__ == '__main__':
# These "asserts" using only for self-checking and not necessary for auto-testing
assert check_pangram("The quick brown fox jumps over the lazy dog."), "brown fox"
assert not check_pangram("ABCDEF"), "ABC"
assert check_pangram("Bored? Craving a pub quiz fix? Why, just come to the Royal Oak!"), "Bored?"
Dec. 17, 2015