如果要在循环内修改正在迭代的序列(例如,复制所选的项目),建议首先制作副本。迭代序列不会隐式地创建副本。使用切片就可以很容易地做到:
>>>
>>> for w in words[:]: # Loop over a slice copy of the entire list. ... if len(w) > 6: ... words.insert(0, w) ... >>> words [‘defenestrate‘, ‘cat‘, ‘window‘, ‘defenestrate‘]
时间: 2024-10-09 22:13:11