numpy.set_printoptions

numpy.set_printoptions는 부동 소수점, 어레이, 그리고 다른 NumPy 객체가 표시되는 방식을 설정합니다.



예제

import numpy as np

a = np.array([1.22315616, 5.124311, 15.346346])
print(a)

np.set_printoptions(precision=3)
print(a)
[  1.22315616   5.124311    15.346346  ]
[  1.223   5.124  15.346]

관련 페이지


이전글/다음글

이전글 :
다음글 :