我有一个包含以下行的序言的 Python 代码:
from numpy import array,arccosh,random_integers
稍后在我(成功)使用的代码中array
和arccosh
. 但是,运行程序时出现错误:
from numpy import array,arccosh,random_integers
ImportError: cannot import name random_integers
任何人都可以帮忙吗?谢谢。
我有一个包含以下行的序言的 Python 代码:
from numpy import array,arccosh,random_integers
稍后在我(成功)使用的代码中array
和arccosh
. 但是,运行程序时出现错误:
from numpy import array,arccosh,random_integers
ImportError: cannot import name random_integers
任何人都可以帮忙吗?谢谢。