- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요!
- 먼저 유사한 질문이 있었는지 검색해보세요.
- 서로 예의를 지키며 존중하는 문화를 만들어가요.
- 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.
안녕하세요. 강의 잘 듣고 있습니다.
강의를 듣다가 궁금한 점이 한가지 생겼는데
def coroutine2(x):
print('>>> coroutine stated:{}'.format(x))
y = yield x
print('>>> coroutine received y:{}'.format(y))
z = yield x+y
print('>>> coroutine received z:{}'.format(z))
cr3=coroutine2(30)
print(next(cr3))
print(cr3.send(120))
위 code는 선생님이 작성하신 code에서 숫자만 바꾼것입니다.
제가 잘 이해가 안가는건
위 code를 실행하였을때 출력이
>>> coroutine stated:30
30
>>> coroutine received y:120
150
이렇게 되잖아요?
그런데 아래처럼 print(next(cr3)) 를 추가하여 실행하면
def coroutine2(x):
print('>>> coroutine stated:{}'.format(x))
y = yield x
print('>>> coroutine received y:{}'.format(y))
z = yield x+y
print('>>> coroutine received z:{}'.format(z))
cr3=coroutine2(30)
print(next(cr3))
print(cr3.send(120))
print(next(cr3))
>>> coroutine stated:30
30
>>> coroutine received y:120
150
>>> coroutine received z:None
Traceback (most recent call last): File "c:\python-ex\py.py", line 12, in <module> print(next(cr3)) StopIteration
이렇게 출력이 됩니다
그런데 전 빨간색 줄이 잘 이해가 안가요 ㅠㅠ
z는 이미 150으로 값이 정해지지 않았나요?
그런데 왜 None으로 출력되는건가요