TIL 0712233
https://mellowlee.tistory.com/entry/numpy-npisin-npwhere-index-%EC%B0%BE%EC%95%84%EB%B3%B4%EA%B8%B0 [numpy] np.isin(), np.where() index 찾아보기 github np.isin() 내가 찾는게 있는지 여부를 각 index 위치에 True, False 형태로 알려줌 1,4,6,10이 포함되어 있는지를 찾고 싶을때 사용한다. from numpy import ndarray import numpy as np datas = np.asarray([1,2,3,4,5,6,7]) mellowlee.tistory.com https://kjk92.tistory.com/19 [numpy]파이썬 numpy array index..