my input: np.random.multinomial(20, [1/6.]*6) The output supposed to be something like: array([2, 1, 3, 5, 8, 1], dtype=int64) But the actual outpu
np.random.multinomial(20, [1/6.]*6)
array([2, 1, 3, 5, 8, 1], dtype=int64)