list 的 for ... in 迭代,是内部生成一个计数器,从 0 开始,每次加 1,将这个数字作为索引取该 list 的元素,直到产生 StopIteration 终止
内部计数器从 0 开始
list 为 ["pastrami","vegetable","chicken","pastrami","pastrami"]
给出 list[0] 用作迭代,此时为 "pastrami"
删掉"pastrami",list 变为 ["vegetable","chicken","pastrami","pastrami"]
内部计数器加 1 变为 1
给出 list[1] 用作迭代,此时为 "chicken",那个 "vegetable" 的索引已经变为 0 了,所以被跳过了
删掉 "chicken",list 变为 ["vegetable","pastrami","pastrami"]
内部计数器加 1 变为 2
给出 list[2] 用作迭代,此时为 "pastrami"
删掉 "pastrami",list 变为 ["vegetable","pastrami"]
内部计数器加 1 变为 3
给出 list[3] 用作迭代,超过现在 list 的长度,触发 StopIteration,迭代终止
此时如果 while list,因为非空,所以再将 ["vegetable","pastrami"] 进行 for 迭代
list[0] -> "vegetable",删掉此元素,list 变为 ["pastrami"]
list[1] -> StopIteration,迭代终止
再 while list,还有一个元素,所以再将 ["pastrami"] 进行 for 迭代
list[0] -> "pastrami",删掉此元素,list 变为 []
list[1] -> StopIteration,迭代终止
再 while list,空列表,不再继续,while 结束