Kaydet (Commit) 859043c0 authored tarafından Georg Brandl's avatar Georg Brandl

Fix markup.

üst 9c6c47bf
...@@ -540,7 +540,7 @@ complicated expressions inside a format string. ...@@ -540,7 +540,7 @@ complicated expressions inside a format string.
So far we've shown how to specify which field to substitute into the So far we've shown how to specify which field to substitute into the
resulting string. The precise formatting used is also controllable by resulting string. The precise formatting used is also controllable by
adding a colon followed by a format specifier. For example: adding a colon followed by a format specifier. For example::
# Field 0: left justify, pad to 15 characters # Field 0: left justify, pad to 15 characters
# Field 1: right justify, pad to 6 characters # Field 1: right justify, pad to 6 characters
...@@ -552,7 +552,7 @@ adding a colon followed by a format specifier. For example: ...@@ -552,7 +552,7 @@ adding a colon followed by a format specifier. For example:
fmt.format('Banquet', 125) -> fmt.format('Banquet', 125) ->
'Banquet $ 125' 'Banquet $ 125'
Format specifiers can reference other fields through nesting: Format specifiers can reference other fields through nesting::
fmt = '{0:{1}}' fmt = '{0:{1}}'
fmt.format('Invoice #1234', width) -> fmt.format('Invoice #1234', width) ->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment