I am not getting why the colon shifted left in the second time
>>> print '%5s' %':'
:
>>> print '%5s' %':' '%2s' %':'
: :
Help me out of this please
|
|
|
|
|
|
|
In Python, juxtaposed strings are concatenated:
So in your second example, it is equivalent to:
which by the precedence rules for Python's % operator, is:
or
|
||||||
|
|
|
What are you trying to do?
You could achieve what you want by mixing them both into a single string formatting expression. |
||
|
|