使用 numpy 随机函数时出错,它显示 int object not callable 请建议替代
问问题
38 次
2 回答
2
np.random.random_integers
您在将参数传递给( 此处: ( )时错过了第二个逗号100(3,4))
,因此它假定 100 是您要向其传递参数 3 和 4 的函数,而事实并非如此,因为 100 是一个整数。
改变
np.random.random_integers(50, 100(3,4))
至
np.random.random_integers(50, 100, (3, 4))
于 2020-06-24T07:35:11.777 回答
0
xx=np.random.random_integers(50,100(3,4))
请提出替代方案
作为替代方案,我建议插入缺少的逗号:
xx = np.random.random_integers(50, 100, (3, 4))
于 2020-06-24T07:34:10.583 回答