3

我有一个包含以下行的序言的 Python 代码:

from numpy import array,arccosh,random_integers

稍后在我(成功)使用的代码中arrayarccosh. 但是,运行程序时出现错误:

from numpy import array,arccosh,random_integers
ImportError: cannot import name random_integers

任何人都可以帮忙吗?谢谢。

4

1 回答 1

5

我没有使用 NumPy 的经验,但快速的 Google 搜索告诉我它random_ingegers实际上是在numpy.random. 所以from numpy.random import random_integers,也许?

于 2012-06-22T22:12:28.883 回答