标签: python
enter image description here
我收到IndexError:列表索引超出范围
答案 0 :(得分:0)
您应该知道的第一件事是,randint(start, end)函数随机生成从start到end的数字。因此,在您的情况下,它所生成的数字比列表中具有的索引多。可以,
randint(start, end)
start
end
people = randint(0, len(persons)-1)