python 如何一次随机取出多条数据(能重复/不能重复)

取出的数据可以重复

need=[random.randint(0,100) for _ in range(要取出的数据条数)]

# 随机抽取3个测试题
exam_choice_list = [random.choice(exam_msg_list) for _ in range(3)]
image.png

取出的数据不能重复

need = random.sample([要取数据的列表], 要取出的数据个数)

exam_choice_list = random.sample(exam_msg_list, 3)
image.png

你可能感兴趣的:(python 如何一次随机取出多条数据(能重复/不能重复))