Given:
a = 1
b = 10
c = 100
I want to display a leading zero for all numbers with less than 2 digits.
Essentially displaying
01
10
100
|
1
|
|
|
|
|
|
Here you are:
Basically % is like printf or sprintf. |
||
|
|
|
results:
Read more information about string formatting using % in the documentation. |
||
|
|
|
Use a format string - http://docs.python.org/lib/typesseq-strings.html For example:
|
||
|
|
|
|
In Python 3.0 you would use the format() string method:
or using the built-in (for a single number):
See the PEP-3101 documentation for the new formatting functions. |
|||