Nashi Blog
python 変数に代入するformat関数
pythonで変数などの文字列に埋め込むやり方。
name = "太郎" print("hellow {}".format(name)) => hellow 太郎
TOPへ戻る