String formatting
May 13, 2021
In [25]: print("%s my %s" % ("hello","world"))
hello my world
https://docs.python.org/3/library/string.html#format-string-syntax
In [25]: print("%s my %s" % ("hello","world"))
hello my world
https://docs.python.org/3/library/string.html#format-string-syntax