例如:
random.randint(low, high=None, size=None, dtype='l')
>>> np.random.randint(2, size=10)
array([1, 0, 0, 0, 1, 1, 0, 0, 1, 0])
参数分别是low,high,size,dtype,但是函数调用中“ 2”的参数是什么?它不对应任何参数吗?
答案 0 :(得分:0)
'2'对应于低参数。
您不需要指定“低”,因为它是一个位置参数。
通常,random.randint生成[low,high)之间的数字。但是,如果high = None,则它会生成介于[0,low)
之间的数字因此,您将获得0到2之间的整数(不包括在内)