Python: Simplest method for zero-padding a number

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

If the number is provided in string format:

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

And for integer format:

n = 4
print '%03d' % n
'004'

Source

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