我的Python代码带有包含以下行的前导码:
from numpy import array,arccosh,random_integers
稍后在代码中我(成功)使用array
和arccosh
。但是,我在程序运行时遇到错误:
from numpy import array,arccosh,random_integers
ImportError: cannot import name random_integers
有人可以帮忙吗? 感谢。
答案 0 :(得分:5)
我没有NumPy的经验,但快速的Google搜索告诉我random_ingegers
实际上在numpy.random
。那么,from numpy.random import random_integers
,也许?