반응형
해결 방법
>>> x = numpy.array([1,0,2,0,3,0,4,5,6,7,8])
>>> numpy.where(x == 0)[0]
array([1, 3, 5])
참조 페이지 https://stackoverflow.com/questions/4588628
반응형
'파이썬' 카테고리의 다른 글
파이썬 Creating a BAT file for python script (0) | 2020.10.16 |
---|---|
파이썬 Is there an easily available implementation of erf() for Python? (0) | 2020.10.16 |
파이썬 Handling \r\n vs \n newlines in python on Mac vs Windows (0) | 2020.10.16 |
파이썬 1D numpy 배열에서 Numpy를 사용하여 로컬 최대 값 / 최소값 찾기 (0) | 2020.10.16 |
파이썬 간단한 문자열에서 timedelta 객체를 생성하는 방법 (0) | 2020.10.16 |
댓글