본문 바로가기
DEVELOPMENT/PYTHON

pandas 지수표현 없이 출력하기

by Z@__ 2020. 1. 3.
반응형

판다스를 쓸 때

이렇게 숫자가 지수표현식으로 나와서 불편할 때가 있습니다.

 

이럴 때는 pandas display option을 바꿔주면 실수표현이 가능합니다

 

pd.options.display.float_format = '{:.5f}'.format

이렇게 잘 적용이 되었고 다시 원래대로 옵션을 변경하고 싶을 때는 아래 명령어를 사용하시면 됩니다

 

 

 

pd.reset_option('display.float_format')

 

 

숫자 앞에 0채우기

text = '2'

a = text.zfill(2)  # 02

b = text.zfill(10)  #0000000002

c = text.zfill(1) #2

반응형

'DEVELOPMENT > PYTHON' 카테고리의 다른 글

python tuple to dict  (0) 2020.05.05
dataframe sort multi columns  (0) 2020.04.17
Jupyter to pdf 500 : Internal Server Error  (0) 2019.07.28
python gpu programming example code  (0) 2019.03.18
auto py to exe 사용법  (0) 2019.03.07

댓글