随机不重复多次抽取列表函数(含代码)

思路大概两种:
第一种直接打乱列表,而后从列表中提取。这种方法对数组更友好。
第二种,直接从列表中随机选出参数。
这里详细介绍第二种。先上代码

// An highlighted block
import random

unconfirmed_names = ['元组1','参数2','参数3','参数4', '参数5', '参数6', '参数7', '参数8', '参数9']
confirmed_names = []
while unconfirmed_names:
    confirmed_names = random.sample(unconfirmed_names, 1)
    print(confirmed_names)
    for i in confirmed_names:
        if i in unconfirmed_names:
            unconfirmed_names.remove(i)
print(unconfirmed_names)

首先:确定两个列表,一个包含待选择的参数,一个包含已选择参数列表
第二:利用while循环确定待选列表中有无参数
第三:利用random.sample(待选列表,每次随机抽取n个参数(此处设置为1))随机选取列表中参数
第四:打印选中参数
第五:遍历已选参数列表,若其中参数和待选列表重合,则从待选列表中删除

打印待选列表验证
over

你可能感兴趣的:(小程序,小程序,随机抽取)