“Função de forma Python” Respostas de código

O que o. Shape faz em Python

#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

Função 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 python variável

variable.shape()
Massylia KHELAFI

Função de forma python Numpy Sintaxe

numpy.shape(array_name)
Outrageous Ostrich

Respostas semelhantes a “Função de forma Python”

Perguntas semelhantes a “Função de forma Python”

Mais respostas relacionadas para “Função de forma Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código