在Python中从1循环到无穷大

在Python中从1循环到无穷大,第1张

在Python中从1循环无穷大

使用

itertools.count

import itertoolsfor i in itertools.count(start=1):    if there_is_a_reason_to_break(i):        break

在Python
2,

range()
xrange()
限于
sys.maxsize
。在Python
3中
range()
可以更高,尽管不能达到无穷大:

import sysfor i in range(sys.maxsize**10):  # you could go even higher if you really want    if there_is_a_reason_to_break(i):        break

因此,最好使用

count()



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5643687.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存