我试图以随机顺序列出数字1-24的列表,为什么这不起作用?
full_list = []
x = 0
while x < 25 :
n = randint (1,24)
while n in full_list:
n = randint (1,24)
full_list.append(n)
x = x + 1
答案 0 :(得分:7)
random有一个shuffle
函数,对这个任务更有意义:
ar = list(range(1,25))
random.shuffle(ar)
ar
> [20, 14, 2, 11, 15, 10, 3, 4, 16, 23, 13, 19, 5, 21, 8, 7, 17, 9, 6, 12, 22, 18, 1, 24]
此外,您的解决方案无效,因为while x < 25
需要while x < 24
。当x = 24
时,它处于无限循环中(因为randint(1,24)
永远不会生成不在列表中的新数字。)