gpt4 book ai didi

python:在子列表的索引上运行循环

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

for items in things:
while inputFloat != 0:
thingsBack[][1]=inputFloat//things[]
inputFloat=inputFloat-(things[]*thingsBack[][1])

things 是一个包含 n 个元素的列表,而 thingsBack 是一个包含 n 个子列表的列表。我希望 things 和 thingsBack 从第 0 个元素开始并循环递归。计算inputFloat//things[]只改变thingsBack中第j个子列表的第1个索引。我知道 [] 是无效语法,但用于说明目的。

似乎有一个明显的解决方案,但我没有看到。

最佳答案

猜猜看,我想您是在寻找当前项目在 for 循环中的索引?

for index, items in enumerate(things):
# do stuff using index

检查一下:

Accessing the index in Python 'for' loops

关于python:在子列表的索引上运行循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35030662/

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