• Python中用魔术方法表示协议。
    • 生成器是语法简化版的迭代器。

    gen = calc_avg() next(gen) print(gen.send(10)) print(gen.send(20)) print(gen.send(30)) ```