[NumPy] Python 리스트와 NumPy 배열의 차이점
Python을 사용하다 보면 리스트랑 NumPy 배열을 헷갈릴 때가 있다. 겉으로는 비슷하게 생겼지만, 실제로는 역할과 특징이 많이 다르다. import numpy as npmylist = [1, 2, 3]myarray = np.array(mylist)print("List:", mylist) # [1, 2, 3]print("Array:", myarray) # [1 2 3]print("Type of list:", type(mylist)) # print("Type of array:", type(myarray)) # Python 리스트 리스트는 다양한 데이터 타입을 하나의 리스트에 저장할 수 있는 자료구조이다. (Int/Float, String, Boolean 등 서로 다른 데이터 타입을 섞어서 저..
2025. 1. 21.