Dynamic Zero Padding.

MRAB python at mrabarnett.plus.com
Tue Jun 7 18:00:00 EDT 2011


On 07/06/2011 22:36, Friedrich Clausen wrote:
> Hello All,
>
> I want to print some integers in a zero padded fashion, eg. :
>
>>>> print("Testing %04i" % 1)
> Testing 0001
>
> but the padding needs to be dynamic eg. sometimes %05i, %02i or some
> other padding amount. But I can't insert a variable into the format
> specification to achieve the desirable padding.
>
> I would be much obliged if someone can give me some tips on how to
> achieve a variably pad a number.
>
 >>> "Testing %0*i" % (4, 1)
'Testing 0001'
 >>> "Testing %0*i" % (5, 1)
'Testing 00001'



More information about the Python-list mailing list