python中的置换和randint有什么区别?

时间:2019-03-20 02:55:38

标签: python-3.x numpy

有:

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

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

0 个答案:

没有答案