当前位置:  开发笔记 > 编程语言 > 正文

Python相当于Ruby的延续

如何解决《Python相当于Ruby的延续》经验,为你挑选了1个好方法。

Ruby中以下代码的Python等价物是什么?

def loop
  cont=nil
  for i in 1..4
    puts i
    callcc {|continuation| cont=continuation} if i==2
  end
  return cont
end

> c=loop
1
2
3
4
> c.call
3
4

参考:轻量级开发成功的秘诀,第9部分:基于Continuations的框架



1> Greg Hewgill..:

您引用的文章在参考资料部分中包含指向Continuations Made Simple和I​​llustrated的链接,该部分讨论了Python语言中的延续.

推荐阅读
wangtao
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有