Python format int as string with leading zeros

Code examples

15
0

python convert number to string with leading zeros

str(1).zfill(2)
# 1 will be '01'

str(23).zfill(4)
# 23 will be '0023'
2
0

python3 format leading 0

print("{:02d}".format(1))

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................