gpt4 book ai didi

循环遍历所有列表对的 Pythonic 方法

转载 作者:太空宇宙 更新时间:2023-11-04 09:53:06 25 4
gpt4 key购买 nike

<分区>

我真的很惊讶我在任何地方都找不到这个。在大多数语言中,遍历列表中所有可能的对看起来像这样:

for (i = 0; i < length; i++) 
for (j = i + 1; j < length; j++)
do stuff

但是在 python 中,你必须这样做:

for i in range (len(clusters)):
for j in range (i+1, len(clusters)):
do stuff

我觉得这不是很 pythonic。执行此操作的最佳方法是什么?

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