gpt4 book ai didi

python 列表迭代

转载 作者:太空宇宙 更新时间:2023-11-03 12:28:55 25 4
gpt4 key购买 nike

我在 python 中有一个列表迭代定义如下:

for i in range(5):
for j in range(5):
if i != j:
print i , j

因此对于我定义的范围 [0..5] 中的每个元素,我想获取每个元素 i,但也想获取所有其他不是 i 的元素。

这段代码完全符合我的预期,但是有没有更简洁的方法呢?

最佳答案

使用itertools.permutations :

import itertools as it
for i, j in it.permutations(range(5), 2):
print i, j

关于python 列表迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9921976/

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