/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/python/py-502-25-001/main.py
17 строк
364 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
class CountDown: def __init__(self, start): self.current = start def __iter__(self): return self def __next__(self): if self.current < 0: raise StopIteration value = self.current self.current -= 1 return value # Использование for n in CountDown(3): print(n) # 3, 2, 1, 0