Jython:itertools在哪里?

时间:2018-08-03 07:16:58

标签: python-import jython jython-2.5

在Jython 2.5.3中,尝试导入itertools:

>>> from itertools import product
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name product

但是,如果您看到this page from Jython docs,则itertools从2.3开始就成为Jython的核心部分。

我需要在syspath上导入iterool吗?

1 个答案:

答案 0 :(得分:1)

itertools.product在Jython 2.5中不可用。该功能在CPython 2.6中添加,在Jython 2.7中可用。

另请参阅https://wiki.python.org/jython/JythonFaq/GeneralInfo#Is_Jython_the_same_language_as_Python.3F