파이썬에서 배열의 모양과 크기

Muhammad Maisam Abbas 2023년1월30일
  1. Python에서numpy.shape()함수를 사용하여 배열의 형태를 가져옵니다
  2. Python에서numpy.size()함수를 사용하여 배열 크기 가져 오기
파이썬에서 배열의 모양과 크기

이 튜토리얼에서는 파이썬에서 배열의 모양과 크기를 얻는 방법에 대해 설명합니다.

Python에서numpy.shape()함수를 사용하여 배열의 형태를 가져옵니다

numpy.shape()함수는 배열의 각 차원에있는 요소의 수를 제공합니다. numpy.shape()는 배열의 각 차원에있는 요소 수를 포함하는 튜플을 반환합니다.

다음 코드 예제는numpy.shape()함수를 사용하여 Python에서 배열의 모양을 얻는 방법을 보여줍니다.

import numpy

arr = numpy.array([[1, 2, 3, 4], [5, 6, 7, 8]])

print(numpy.shape(arr))

출력:

(2, 4)

위의 코드에서 먼저numpy.array()함수를 사용하여 배열arr를 초기화 한 다음numpy.shape()함수로 해당 배열의 모양을 가져옵니다.

Python에서numpy.size()함수를 사용하여 배열 크기 가져 오기

배열의 크기는 배열의 총 요소 수입니다. numpy.size()함수 NumPy패키지는 주어진 배열의 크기를 반환합니다. 다음 코드 예제는numpy.size()함수를 사용하여 배열의 크기를 얻는 방법을 보여줍니다.

import numpy

arr = numpy.array([[1, 2, 3, 4], [5, 6, 7, 8]])

print(numpy.size(arr))

출력:

8

위의 코드에서 먼저numpy.array()함수를 사용하여 배열arr를 초기화 한 다음numpy.size()함수로 해당 배열의 크기를 가져옵니다.

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

관련 문장 - NumPy Array