Python: Simplest method for zero-padding a number

0 Comments

Harley provides an awesome method for zero padding a number in a string.

If the number is provided in string format:

1.n = '4'
2.print n.zfill(3)
3.'004'

And for integer format:

1.n = 4
2.print '%03d' % n
3.'004'

Source

 
Copyright © Twig's Tech Tips
Theme by BloggerThemes & TopWPThemes Sponsored by iBlogtoBlog