안녕하세요. 코루틴 예제에서 마지막에 yield가 없을 때는 예외 처리를 해야하나요? 아니면 어떻게 코루틴 함수를 끝낼 수 있을까요?
def corutine_ex2(x):
print('>>> corutine started : {}'.format(x))
y = yield x
print('>>> corutine received : {}'.format(y))
z = yield x + y
print('>>> corutine received : {}'.format(z))