gpt4 book ai didi

Python:将for循环中的索引合并为列表名称的一部分

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

如何生成一组列表,将来自 for 循环的索引合并到列表名称中:

for j in range(10):
li"j" = []

索引 'j' 怎么可能是名字的一部分,所以列表是 li0, li1, li2, ...

谢谢!

最佳答案

你可以让 li 成为 dictionary :

li = {}
for j in range(10):
li[j] = []

关于Python:将for循环中的索引合并为列表名称的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1934344/

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