Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
def cicle_funct(): i = 0 while i < 10: i += 1 return i while True: print(cicle_funct())
def cicle_funct(): i = 0 while i < 10: i += 1 yield i c = cicle_funct() while True: print(next(c))
def cicle_funct(): i = 0 while i < 10: i += 1 yield i cc = cicle_funct() for c in cc: print(c)
yield