What is the nicest/shortest way to pad a string with zeroes to the left, so the string length has a specific length?

link|improve this question
feedback

6 Answers

up vote 120 down vote accepted

Strings:

>>> n = '4'
>>> print n.zfill(3)
>>> '004'

And for numbers:

>>> n = 4
>>> print '%03d' % n
>>> '004'
link|improve this answer
5  
% formatting is deprecated in favor of string.format – Jace Browning Mar 16 at 13:06
feedback

For numbers:

print "%05d" % number

See also: Python: String formatting.

EDIT: It's worth noting that as of yesterday December 3rd, 2008, this method of formatting is deprecated in favour of the format string method:

print("{0:05d}".format(number)) # or
print(format(number, "05d"))

See PEP 3101 for details.

link|improve this answer
feedback

Just use the rjust method of the string object.

This example will make a string of 10 characters long, padding as necessary.

>>> t = 'test'
>>> t.rjust(10, '0')
>>> '000000test'
link|improve this answer
feedback

str(n).zfill(width) will work with strings, ints, floats... and is Python 2.x and 3.x compatible:

>>> n = 3
>>> str(n).zfill(5)
'00003'
>>> n = '3'
>>> str(n).zfill(5)
'00003'
>>> n = '3.0'
>>> str(n).zfill(5)
'003.0'
link|improve this answer
feedback
width = 10
x = 5
print "%0*d" % (width, x)
> 0000000005

See the print documentation for all the exciting details!

link|improve this answer
This won't work in Python 3.x – Johnsyweb Jun 1 '11 at 4:41
5  
True, but since that answer was written 3 months before Guido wrote this (docs.python.org/release/3.0.1/whatsnew/3.0.html) I think I can be forgiven for not predicting the future. – Peter Rowell Jun 1 '11 at 4:51
3  
For sure. I wasn't saying that it was incorrect, purely for the information of people stumbling across the the answer today (as I just did). – Johnsyweb Jun 1 '11 at 4:58
feedback

GREAT for zip codes saved as integers!

>>> a = 6340
>>> b = 90210
>>> print '%05d' % a
06340
>>> print '%05d' % b
90210
link|improve this answer
2  
Not in Python 3.x it's not. – Johnsyweb Jun 1 '11 at 4:41
1  
You are correct, and I like your suggestion with zfill better anyhow – user221014 Jun 11 '11 at 3:01
feedback

Your Answer

 
or
required, but never shown