I'd like to do it in an elegant fashion:
>>> ''.zfill(5, '-')
'-----'
There's any way to initialize a string with a fill char and a counter? Of course, count may vary.
|
|
|
Just try:
It's that simple in Python :) |
|||
|
|
The introduction to strings in the "official" tutorial says:
|
|||
|
|