728x90
반응형
개요
numpy.array 배열을 문자열로 변환하는 간단한 방법을 정리해 둡니다.
변환 방법
다음과 같이 string.join() 함수를 이용하면 됩니다.
>>> import numpy as np
>>> det = np.array([[0, 1, 2, 3, 4, 5], [0, 1, 2, 3, 4, 5], [0, 1, 2, 3, 4, 5]])
>>> det[:, :4]
array([[0, 1, 2, 3],
[0, 1, 2, 3],
[0, 1, 2, 3]])
>>> det[0][:4]
array([0, 1, 2, 3])
','.join([str(coord) for coord in det[0][:4]])
>>> '0,1,2,3'
참고자료
- "파이썬 python list to string 리스트를 문자열로 변경":https://dreamjy.tistory.com/91
'프로그래밍 > Python' 카테고리의 다른 글
[Python] 날짜 문자열을 timestamp로 변환하기 (0) | 2022.05.13 |
---|---|
[Python] class의 재미난 특징 (0) | 2022.05.12 |
[Python] 윈도우(windows)에서 시그널(signal) 다루기 (0) | 2022.04.20 |
[Python] OpenCV 버전 및 패키지 설치 위치 확인 방법 (0) | 2022.04.04 |
[Python] 변수 할당 (0) | 2022.02.11 |