脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python在for循环中更改list值的方法【推荐】

Python在for循环中更改list值的方法【推荐】

2021-03-28 00:21白云深秋 Python

这篇文章主要介绍了Python在for循环中更改list值的方法,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下

一、在for循环中直接更改列表中元素的值不会起作用:

如:

?
1
2
3
4
5
l = list(range(10)[::2])
 print (l)
for n in l:
 n = 0
print (l)

运行结果:

[0, 2, 4, 6, 8]
[0, 2, 4, 6, 8]

l中的元素并没有被修改

二、在for循环中更改list值的方法:

1.使用range

?
1
2
3
4
5
l = list(range(10)[::2])
print (l)
for i in range(len(l)):
 l[i] = 0
print (l)

运行结果:

[0, 2, 4, 6, 8]
[0, 0, 0, 0, 0]

2.使用enumerate

?
1
2
3
4
5
l = list(range(10)[::2])
print (l)
for index,value in enumerate(l):
 l[index] = 0
print (l)

运行结果:

[0, 2, 4, 6, 8]
[0, 0, 0, 0, 0]

总结

以上所述是小编给大家介绍的Python在for循环中更改list值的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:https://www.cnblogs.com/lichuang/archive/2018/08/17/9492821.html

延伸 · 阅读

精彩推荐