What is the nicest/shortest way to pad a string with zeroes to the left, so the string length has a specific length?
|
|
Strings:
And for numbers:
|
||
|
|
|
|
For numbers:
See also: Python: String formatting. EDIT: It's worth noting that as of yesterday, this method of formatting is deprecated in favour of the
See PEP 3101 for details. |
|||
|
|
|
|
See the print documentation for all the exciting details! |
||
|
|
|
|
Just use the rjust method of the string object. This example will make a string of 10 characters long, padding as necessary.
|
||
|
|
