https://academy.elice.io/courses/69397/lectures/582570/lecturepages/6472159
import numpy
list(range(10))
# [0,1,2,3,4,5,6,7,8,9]
np.array([1,2,3,4,5])
# array([1,2,3,4,5])
np.array([[1,2,],
[3,4]])
np.linspace(0,1,5)
# array([0. , 0.25, 0.5, 0.75, 1. ])


#0부터 5사이 랜덤한 값이 담긴 3x5 array를 만들어 봅시다!
array = np.random.randint(0,5,(3,5))

x2 =np.random.randint(10,size=(3,4))
x2.ndim #2 # 2차원
x2.shape # (3,4)
x2.size # 12
x2.dtype # dtype('int64')

x= np.arange(7)
x[3]
x[7]
x[0]=10
# array([10,1,2,3,4,5,6])
정말 유익한 글이었습니다.