[IT]/python.numpy
numpy.스칼라 연산
givemebro
2020. 3. 30. 18:02
반응형
import numpy as np
a = np.array([1,2,3,4,5])
a+1
[2,3,4,5,6]
a*4
[4,8,12,16,20]
반응형