“Python Definir Table 2D” Código de respuesta

Python Definir Table 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

Respuestas similares a “Python Definir Table 2D”

Preguntas similares a “Python Definir Table 2D”

Más respuestas relacionadas con “Python Definir Table 2D” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código