“2D -Array Python initialisieren” Code-Antworten

Python initialisieren ein 2D -Array

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

initialisieren Sie einen 2D -Array -Python

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 initialisieren

>>> 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 initialisieren


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

Amused Addax

Ähnliche Antworten wie “2D -Array Python initialisieren”

Fragen ähnlich wie “2D -Array Python initialisieren”

Weitere verwandte Antworten zu “2D -Array Python initialisieren” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen