Pythonでフォーマット文字列を使用する場合,波括弧をプレースホルダの指定に使用する.
波括弧自体を文字列として使用したい場合, 以下のように波括弧を重ねる必要がある.
波括弧のエスケープ
>>> 'test {{{0}}}'.format('hoge')
'test {hoge}'
バックスラッシュではエスケープできないので注意.
(ref) http://docs.python.org/2.7/library/string.html#formatstrings
Go to list of users who liked
More than 5 years have passed since last update.
Pythonでフォーマット文字列を使用する場合,波括弧をプレースホルダの指定に使用する.
波括弧自体を文字列として使用したい場合, 以下のように波括弧を重ねる必要がある.
>>> 'test {{{0}}}'.format('hoge')
'test {hoge}'
バックスラッシュではエスケープできないので注意.
(ref) http://docs.python.org/2.7/library/string.html#formatstrings
Register as a new user and use Qiita more conveniently
Go to list of users who liked