vote up 1 vote down star

I need to add leading zeros to integer to make a string with defined quantity of digits ($cnt). What the best way to translate this simple function from PHP to Python:

function add_nulls($int, $cnt=2) {
    $int = intval($int);
    for($i=0; $i<($cnt-strlen($int)); $i++)
        $nulls .= '0';
    return $nulls.$int;
}

Is there a function that can do this?

flag

47% accept rate
your code is producing notice, btw – SilentGhost Apr 9 at 9:22
php.net/printf is the way to go in php – SilentGhost Apr 9 at 9:29
@SilentGhost, or str_pad – Jasper Bekkers Apr 9 at 11:43

7 Answers

vote up 12 vote down check

You can use the zfill() method to pad a string with zeros:

In [3]: str(1).zfill(2)
Out[3]: '01'
link|flag
vote up 11 vote down

you most likely just need to format your integer:

'%0*d' % (fill, your_int)

e.g.

>>> '%0*d' % (3, 4)
'004'
link|flag
The question is - how to add not permanent quantity of zeros – ramusus Apr 9 at 9:20
+1 formatting is the way to go – David Apr 9 at 9:23
no that's not a question. – SilentGhost Apr 9 at 9:23
This is not permanent - in fact you cannot add zeroes permanently to the from of an int - that would then be interpreted as an octal value. – Matthew Schinckel Apr 9 at 11:56
@Matthew Schnickel: I think the OP wants to know a method to compute the number of zeros he needs. Formatting handles that fine. And int(x, 10) handles the leading zeros. – unbeknown Apr 9 at 12:15
vote up 0 vote down

This is my python function:

def add_nulls(num, cnt=2):
  cnt = cnt - len(str(num))
  nulls = '0' * cnt
  return '%s%s' % (nulls, num)
link|flag
Which is what str.zfill does :) – ΤΖΩΤΖΙΟΥ Apr 9 at 11:33
yes :) another method is this: '%03d' % 8 – Emre Apr 9 at 12:19
vote up 0 vote down

A straightforward conversion would be (again with a function):

def add_nulls2(int, cnt):
    nulls = str(int)
    for i in range(cnt - len(str(int))):
    	nulls = '0' + nulls
    return nulls
link|flag
vote up 1 vote down

Python 2.6 allows this:

add_nulls = lambda number, zero_count : "{0:0{1}d}".format(number, zero_count)

>>>add_nulls(2,3)
'002'
link|flag
vote up 2 vote down

You have at least two options:

  • str.zfill: lambda n, cnt=2: str(n).zfill(cnt)
  • % formatting: lambda n, cnt=2: "%0*d" % (cnt, n)

If on Python >2.5, see a third option in clorz's answer.

link|flag
vote up 0 vote down

Just for the culture, on PHP, you have the function str_pad which makes exactly the job of your function add_nulls.

str_pad($int, $cnt, '0', STR_PAD_LEFT);
link|flag

Your Answer

Get an OpenID
or

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