03.1-5五个数字随机排序

1-5五个数字随机排序

代码记录,无实际意义

""" 功能:1-5五个数字随机排序 时间:1-10 """
import random

list1 = []
list2 = [random.randint(1, 5)]
while len(list2) < 5:
    n = random.randint(1, 5)
    list1.append(n)
    i = 0
    for j in list2:
        if n == j:
            i += 1
            break
        else:
            i == 0
    if i == 0:
        list2.append(n)
print(list2)
    原文作者:Kendals
    原文地址: https://blog.csdn.net/ddd53269/article/details/105513468
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞