gpt4 book ai didi

python - 如何在 Python 中获取任意大小的空列表?

转载 作者:IT老高 更新时间:2023-10-28 21:09:10 25 4
gpt4 key购买 nike

我基本上想要一个在 C 中与这个数组等效的 Python:

int a[x];

但在 python 中我声明了一个数组,如:

a = []

问题是我想为随机插槽分配如下值:

a[4] = 1

但我不能用 Python 做到这一点,因为 Python 列表是空的(长度为 0)。

最佳答案

如果“数组”实际上是指 Python 列表,则可以使用

a = [0] * 10

a = [None] * 10

关于python - 如何在 Python 中获取任意大小的空列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5205575/

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