gpt4 book ai didi

python - 在python中遍历列表的最有效方法是什么?

转载 作者:IT老高 更新时间:2023-10-28 20:39:10 26 4
gpt4 key购买 nike

假设我有一个项目列表:

x = [1, 2, 3, 4, 5]

我需要为这些项目中的每一项执行一些功能。在某些情况下,我需要返回一个项目的索引。

哪种方法最好、最有效?

for item in list:
....

for i in range(len(list)):
....

最佳答案

for item in list:

它显然是函数调用较少的那个。

如果您想随时获取项目的索引,请使用 enumerate像这样

for pos, item in enumerate(collection):

关于python - 在python中遍历列表的最有效方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10929724/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com