본문 바로가기
Programming/Python

숫자 출력 시 width에 맞춰서 앞에 0 채우기

by Chan_찬 2020. 7. 28.
728x90
반응형

python

앞에 0을 채워서 스트링 길이를 width에 맞추기

>>> '3'.zfill(5)
>>> '%05d'% 3
>>> format(3,'05')
>>> '{0:05d}'.format(3)
>>> '{n:05d}'.format(n=3)
>>> '3'.rjust(5,'0')

'00003'
728x90
728x90
BIG

'Programming > Python' 카테고리의 다른 글

copy - shallow, deep : 깊은복사, 얕은복사  (0) 2020.08.19
generator - 제너레이터  (0) 2020.08.18
python eval(), exec() - 문자열코드 실행  (0) 2020.07.17
math 분수 계산  (0) 2020.07.03
python print - sep, end  (0) 2020.07.02
Buy me a coffeeBuy me a coffee

댓글