"%s %s %s" % (a, b, a) "{} {} {}".format(a, b, a)
"{a} {b} {a}".format(a=a, b=b) "{a} {b} {a}".format(**locals())
f"{a} {b} {a}"
f"{a + ' ' + b + ' ' + a}"
https://www.python.org/dev/peps/pep-0498/#no-use-of-globals-...
You could argue that's not a good enough reason, but it's there.