numpy.random.randint

Posted 去做点事情

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numpy.random.randint相关的知识,希望对你有一定的参考价值。

low、high、size三个参数。默认high是None,如果只有low,那范围就是[0,low)。如果有high,范围就是[low,high)。

>>> np.random.randint(2, size=10)
array([1, 0, 0, 0, 1, 1, 0, 0, 1, 0])

>>> np.random.randint(1, size=10)
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0])

>>> np.random.randint(5, size=(2, 4))
array([[4, 0, 2, 1],
       [3, 2, 2, 0]])

 

以上是关于numpy.random.randint的主要内容,如果未能解决你的问题,请参考以下文章

python生成随机数,就没有见过这么全的博客

ndarray对象的使用方法

使用嵌套字典创建多索引“系列”

python numpy中sum()时出现负值

使用 loc 删除索引过滤的数据帧

微信小程序代码片段