-
[Python] Coroutine
기존에 generator에서 yield 키워드를 lvalue로 사용해 제어권을 넘겨줬지만, coroutine은 rvalue로 사용하여 특정 변수에 값을 전달 할 수 있다. 참고로 Coroutine은 generator의 일종이다. Ready to receiveGot 1Got 2Got Hello Coroutine은 decorator를 통해 사용하기 유용하다.…
기존에 generator에서 yield 키워드를 lvalue로 사용해 제어권을 넘겨줬지만, coroutine은 rvalue로 사용하여 특정 변수에 값을 전달 할 수 있다. 참고로 Coroutine은 generator의 일종이다. Ready to receiveGot 1Got 2Got Hello Coroutine은 decorator를 통해 사용하기 유용하다.…