“2d Array Python Initialize” Código de respuesta

Python inicializa una matriz 2D

x = [[foo for i in range(10)] for j in range(10)]
# x is now a 10x10 array of 'foo' (which can depend on i and j if you want)
Unusual Unicorn

Inicializar una pitón de matriz 2D

x = [[foo for i in range(10)] for j in range(10)]
# x is now a 10x10 array of 'foo' (which can depend on i and j if you want)
Muddy Magpie

2d Array Python Initialize

>>> b = [['a']*3]*3
>>> b
[['a', 'a', 'a'], ['a', 'a', 'a'], ['a', 'a', 'a']]
>>> b[1][1]
'a'
>>> b[1][1] = 'b'
>>> b
[['a', 'b', 'a'], ['a', 'b', 'a'], ['a', 'b', 'a']]
Grumpy Gaur

2d Array Python Initialize


bar = []
for item in some_iterable:
    bar.append(SOME EXPRESSION)

Amused Addax

Respuestas similares a “2d Array Python Initialize”

Preguntas similares a “2d Array Python Initialize”

Más respuestas relacionadas con “2d Array Python Initialize” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código