[python]sendメソッドを使用する方法
使用例
# coding: utf-8 def funcA(x): for a in range(10): b = yield ('world',kk) if b is not None: kk = b tt = funcA("sample") print(next(tt))
実行結果
('world’,’sample’)
Coding Changes the World
使用例
# coding: utf-8 def funcA(x): for a in range(10): b = yield ('world',kk) if b is not None: kk = b tt = funcA("sample") print(next(tt))
実行結果
('world’,’sample’)