Someone has recently demonstrated to me that we can print variables in Python like how Perl does.
Instead of:
print(\"%s, %s, %s\" % (foo, bar, baz))
Since Python 3.6, you could have what you wanted.
>>> name = "world" >>> print(f'hello {name}') hello world
note the string prefix f above
f