gpt4 book ai didi

Python - 多行数组

转载 作者:太空狗 更新时间:2023-10-30 00:21:47 25 4
gpt4 key购买 nike

在 C++ 中我可以写:

int someArray[8][8];
for (int i=0; i < 7; i++)
for (int j=0; j < 7; j++)
someArray[i][j] = 0;

如何在 python 中初始化多行数组?我试过:

array = [[],[]]
for i in xrange(8):
for j in xrange(8):
array[i][j] = 0

最佳答案

>>> [[0]*8 for x in xrange(8)]
[[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]
>>>

关于Python - 多行数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2630211/

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