python 変数に代入するformat関数

pythonで変数などの文字列に埋め込むやり方。

name = "太郎"
print("hellow {}".format(name))
=> hellow 太郎