在 python 2.4 中模拟 itertools.product 的 Pythonic 方法
我有一个使用 itertools.product 的 python 3 脚本,但我需要能够在仅安装了 python 2.4 的计算机上运行它。由于 itertools.product 是 python 2.6 中的新增功能,因此我无法再访问此函数。
如何以Pythonic方式在Python 2.4中模拟itertools.product
?
I have a python 3 script that uses itertools.product
, but I need to be able to run it on a machine that only has python 2.4 installed. Since itertools.product
is new in python 2.6, I no longer have access to this function.
How can I emulate itertools.product
in Python 2.4 in a pythonic way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 http://docs.python.org/library/itertools.html# 的等效代码itertools.product
Equivalent code from http://docs.python.org/library/itertools.html#itertools.product
我不太熟悉 python 2.4,但是 根据 2.7 文档:
I'm not too familiar with python 2.4, but per the 2.7 docs: