/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/python/py-502-312-001/main.py
16 строк
412 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
word = "python" guessed = "" attempts = 6 while attempts > 0: letter = input("Буква: ").lower() if letter in word: guessed += letter print("Есть:", guessed) if all(ch in guessed for ch in word): print("Победа!") break else: attempts -= 1 print("Осталось:", attempts) else: print("Слово было:", word)