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