String interpolation

[Py]String Interpolation

There are two existing ways to format Strings. One is string modulo operator(%) and the other is str.format(value). The former is old and the latter is relatively new

Read