“¿Qué hace?” Código de respuesta

¿Qué hace?

#The shape attribute for numpy arrays returns the dimensions of the array. 
#If Y has n rows and m columns, then Y. shape is (n,m) .
import numpy as np
arr= np.array([[6, 1, 2, 1],
               [5, 4, 6, 7,],
               [6, 7, 2, 1,]])
result = np.shape(arr)
print(result)
#will return (3,4)
Gandalf

Función de forma python

# Example from https://numpy.org/doc/stable/reference/generated/numpy.ndarray.shape.html
y = np.zeros((2, 3, 4))
y.shape # this returns (2, 3, 4)
CompSciGeek

forma de pitón variable

variable.shape()
Massylia KHELAFI

Respuestas similares a “¿Qué hace?”

Preguntas similares a “¿Qué hace?”

Más respuestas relacionadas con “¿Qué hace?” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código