np.random.randint()的用法

函数的作用是,返回一个随机整型数,其范围为[low, high)。如果没有写参数high的值,则返回[0,low)的值。

从random可以看出是产生随机数,randint可以看出是产生随机整数(int)

参数如下:

  • low: int
    表示生成的数值大于等于low。
    (hign = None时,生成的数值要在[0, low)区间内)
  • high: int (可选)
    如果使用这个值,则生成的数值在[low, high)区间
  • size: int or tuple of ints(可选)
    输出随机数组的尺寸,比如size = (m, n, k),则输出数组的shape = (m, n, k),数组中的每个元素均满足要求。size默认为None,仅仅返回满足要求的单一随机数。
  • dtype: dtype(可选):
    想要输出的格式。如int64、int等等

输出:

  • out: int or ndarray of ints
    返回一个随机数或随机数数组

例子

np.random.randint()的用法_第1张图片

np.random.randint()的用法_第2张图片

你可能感兴趣的:(TensorFlow2.0,python,python,numpy)