🌈 搜索
📅  最后修改于: 2022-03-11 14:46:08.901000             🧑  作者: Mango
import random l = [0, 1, 2, 3, 4] print(random.sample(l, 3)) # [1, 3, 2] print(type(random.sample(l, 3))) #