如何在python中创建许多空的嵌套列表

如何在python中创建许多空的嵌套列表,第1张

如何在python中创建许多空的嵌套列表

尝试列表理解:

lst = [[] for _ in xrange(a)]

下文

>>> a = 3>>> lst = [[] for _ in xrange(a)]>>> lst[[], [], []]>>> a = 10>>> lst = [[] for _ in xrange(a)]>>> lst[[], [], [], [], [], [], [], [], [], []]>>> # This is to prove that each of the lists in lst is unique>>> lst[0].append(1)>>> lst[[1], [], [], [], [], [], [], [], [], []]>>>

但是请注意,以上内容适用于Python2.x。在Python 3.x.上,由于

xrange
已被删除,因此您需要:

lst = [[] for _ in range(a)]


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5143159.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存