gpt4 book ai didi

python - 在 Python 中初始化一个固定大小的数组

转载 作者:IT老高 更新时间:2023-10-28 12:32:07 26 4
gpt4 key购买 nike

我想知道如何初始化一个尚未填充值的数组(或列表),使其具有定义的大小。

例如在 C 中:

int x[5]; /* declared without adding elements*/

如何在 Python 中做到这一点?

最佳答案

你可以使用:

>>> lst = [None] * 5
>>> lst
[None, None, None, None, None]

关于python - 在 Python 中初始化一个固定大小的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6142689/

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