foo = 1
bar = 'bar'
baz = 3.14
You can use str.format to format output. Bracket pairs are replaced with arguments in the order in which the arguments are passed:
print('{}, {} and {}'.format(foo, bar, baz))
# Out: "1, bar and 3.14"
Indexes can also be specified inside the bracket...