python中使用for循环遍历列表,出现多遍历一次为什么

如图,为什么回事循环四次
2024-11-29 11:40:00
推荐回答(2个)
回答1:

改成for i in range(len(students))

回答2:

你用的是同一个变量,在append的时候把student变成四位了,所以出现了四次迭代,你在append,下面print一下就清楚了