vote up 5 vote down star
1

Given:

a = 1

b = 10

c = 100

I want to display a leading zero for all numbers with less than 2 digits.

Essentially displaying

01

10

100

flag

4 Answers

vote up 4 vote down check

Here you are:

print "%02d" % (1)

Basically % is like printf or sprintf.

link|flag
if you want to pass in a one-tuple use (1,). (1) ist just the value one which also works in this context. – unbeknown Jan 26 at 8:15
vote up 18 vote down
x = [1, 10, 100]
for i in x:
    print '%02d' % i

results:

01
10
100

Read more information about string formatting using % in the documentation.

link|flag
The documentation example sucks. They throw mapping in with the leading zero sample, so it's hard to know which is which unless you already know how it works. Thats what brought me here, actually. – Grant Jul 1 at 17:52
vote up 1 vote down

Use a format string - http://docs.python.org/lib/typesseq-strings.html

For example:

python -c 'print "%(num)02d" % {"num":5}'
link|flag
vote up 3 vote down

In Python 3.0 you would use the format() string method:

for i in (1, 10, 100):
    print('{num:02d}'.format(num=i))

or using the built-in (for a single number):

print(format(i, '02d'))

See the PEP-3101 documentation for the new formatting functions.

link|flag
-1: That won't work. Python's format uses curly braces, so print('{num:02d}'.format(num=i)) – nosklo Jan 20 at 12:41
fixed it. No need for a "-1" ? – Ber Jan 26 at 0:43
Ber: aren't we supposed to vote down answers that don't work? Removed -1. – nosklo Jul 2 at 1:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.