赞
踩
举个栗子 用yield创建一个生成器
def fab(max): n, a, b = 0, 0, 1 while n < max: yield b # 使用 yield # print b a, b