这期内容当中小编将会给大家带来有关使用Python怎么在for循环中更改list值,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
一、在for循环中直接更改列表中元素的值不会起作用:
如:
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
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
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有哪些常用库
python常用的库:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。
上述就是小编为大家分享的使用Python怎么在for循环中更改list值了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注天达云行业资讯频道。