rnum = np.random.choice(rnums)
# 10個抽出(重複無し)
rnum = np.random.choice(rnums,
10
,replace=
False
)