파이썬 list 와 Numpy 배열, 자주쓰는 함수 요약
# 추가 : insert(index , 값) 와 append(값) # 삭제 : remove(값) ,// 삭제 키워드: del list[1] # 정렬 : sort(), sort(reverse()=True), reverse() # 찾기 종류 : index() 와 count() 와 pop() 와 len() # 포함 여부True/False : in , not in # python 리스트를 numpy 배열에 넣음: arr = np.array(list1)arr에서 쓰는 확인 함수(저장안됨) # 행열 크기: .shape // # 전체요소 개수: .size // # 배열 차원: ndim # reshape(5[행],10[열]) // # 데이터타입: .dtype // # 데이터 타입 변환 : arrx.astype('int..
Python
2021. 12. 29. 23:53