[ Numpy 100제 ] 01 ~ 10 번
numpy 핸들링에 익숙해져야 한다고 생각해서.. 마침 누군가 잘 만들어둔 numpy 100제 문제가 있어 조금씩 풀어보려 한다. 문제 링크 : link 내 코드 : link 01. import numpy package under the name np import numpy as np 너무 많이 써봤던 코드다. 02.Print the numpy version and the configuration np.__version__ # '1.21.0' numpy 버전을 체크해본 적은 없지만, 당연히 이렇게 될 것이라 짐작할 수 있었다. 03. Create a null vector of size 10 a = np.zeros(10) a # array([0., 0., 0., 0., 0., 0., 0., 0., 0., ..
Python/Numpy
2021. 10. 1. 13:20