for在Python中使用循环迭代列表中的项时,是否会更改item(下面)更改相应的项items?
for
item
items
for item in items: item += 1
项目中的每个项目是否会增加或保持与循环之前相同?
[注意:我对Python 2.7和3.x感兴趣]
python
python ×1