Introfor

문자열 앞 0으로 채우기 본문

Doing/Python

문자열 앞 0으로 채우기

YongArtist 2020. 7. 5. 20:20

zfill()

print("3".zfill(3))

Result

003

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

[Algoritm] Stack  (0) 2020.07.20
numpy 기초  (0) 2020.07.13
Python Flask  (0) 2019.12.23
How to release python module  (0) 2019.12.19
list remove, pop, insert, extend  (0) 2019.10.20
Comments