在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吗?
答案 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。