“Python Zdefiniuj tabelę 2D” Kod odpowiedzi

Python Zdefiniuj tabelę 2D

bar = [SOME EXPRESSION for item in some_iterable]
Nervous Nightingale

Python Tableau 2d

>>> u = np.arange(1, 16)
>>> u
array([ 1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15])
>>> np.shape(u)
(15,)
>>> u.shape = (3, 5)
>>> u
array([[ 1,  2,  3,  4,  5],
       [ 6,  7,  8,  9, 10],
       [11, 12, 13, 14, 15]])
>>> np.shape(u)
(3, 5)
Motionless Mouse

Odpowiedzi podobne do “Python Zdefiniuj tabelę 2D”

Pytania podobne do “Python Zdefiniuj tabelę 2D”

Więcej pokrewnych odpowiedzi na “Python Zdefiniuj tabelę 2D” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu