실수 넘파이 배열을 소수점 자리 맞추어 공백없이 쉼표구분으로 출력하기Python/Python 예제 코드2021. 9. 11. 17:02
Table of Contents
반응형
numpy 배열의 데이터를 원본 csv 파일에서 찾을 목적으로 만들었던 코드였는데 간단한 데이터로 예제코드를 만들어봤습니다.
2021. 9. 11 최초작성
import numpy as np
a = np.linspace(0.01, 1.00, 9).reshape(3, 3)
print('original')
print(a)
print()
print('new')
np.set_printoptions(suppress=True)
print('\n'.join(','.join(str(format(cell,"0.3f")) for cell in row) for row in a))
original [[0.01 0.13375 0.2575 ] [0.38125 0.505 0.62875] [0.7525 0.87625 1. ]] new 0.010,0.134,0.258 0.381,0.505,0.629 0.752,0.876,1.000 |
참고
https://www.kite.com/python/answers/how-to-print-a-numpy-array-without-scientific-notation-in-python
https://andamiro25.tistory.com/16
반응형
'Python > Python 예제 코드' 카테고리의 다른 글
Python에서 실수 출력 포맷 지정하기 (0) | 2021.11.10 |
---|---|
Python - CSV 파일을 순서 유지한채 무작위로 샘플링하여 두 개의 CSV 파일로 분할하기 (0) | 2021.10.04 |
Python에서 C언어 스타일의 조건 처리 전처리문 사용하기 (0) | 2021.06.09 |
Python에서 코드 실행 시간 측정(perf_counter, process_time, timeit) (3) | 2019.08.27 |
Python 개념 정리 - 객체란 ( mutable vs immutable ) (2) | 2018.07.19 |