본문 바로가기

Python/numpy

size, itemsize

np.ndarray의 메서드로 size는 어레이의 총 element 수를 반환, itemsize 각 요소의 길이를 bytes 크기로 반환

 

Q.  How to find the memory size of any array

null_vector = np.zeros(10)

null_vector.size # 10
null_vector.itemsize # 8

print(f"{null_vector.size * null_vector.itemsize}bytes")

80bytes

'Python > numpy' 카테고리의 다른 글

random 정리  (0) 2023.11.02
nonzero  (0) 2023.09.23
info  (0) 2023.09.23
zeros  (0) 2023.09.23