1

在此处输入图像描述

使用 numpy 随机函数时出错,它显示 int object not callable 请建议替代

4

2 回答 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 回答