IT/Python

python numpy

성진팍 2017. 6. 25. 11:05

range 와 같이

numpy제공 np.arange 있고 dtype은 반드시

testArr = [40,20,400,30,10,0,3]

yoyo2 = np.array(testArr,int)

print yoyo2

yoyo2[yoyo2 <= 40] = 0

print yoyo2

twoArr = np.array([[10,20,30,40],[100,200,300,400],[9,8,7,6]])

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

Python class, magic method  (0) 2017.06.25
python 연산자, 조건문, List  (0) 2017.06.25
[python] numpy 이것저것  (0) 2017.05.24