simple question

David Currie daveSP at AMnoaxsSP.AMnet
Mon Feb 17 17:46:40 EST 2003


Hi Les.

les wrote:

> consider this,
> 
>>>> print "%-3d" % 10
> 10
> 
> how do I get python to print "010" instead?

>>> print "%03d" % 10

should do the trick.

Dave




More information about the Python-list mailing list