サブロウ丸

Sabrou-mal サブロウ丸

主にプログラミングと数学

2017-02-23から1日間の記事一覧

Python format形式の中で{}を使う。

pythonのformat形式で例えば{ゴリラ} という文字列を作りたいときは animal = 'ゴリラ' print('{{}}'.format(animal)) print('{{animal}}'.format(animal=animal)) と{を2つ重ねます。