1 import random 2 3 list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] 4 for i in range(3): 5 slice = random.sample(list, 5) # 从list中随机获取5个元素,作为一个片断返回 6 print(slice) 7 print(list, ‘\n‘) # 原有序列并没有改变
输出结果如下,发现每一次的random.sample函数返回的5个元素不同
原文地址:https://www.cnblogs.com/fuqia/p/9055521.html
时间: 2024-11-08 19:56:37