Does anyone know how to make this all appear in one sentence?

I found it. Thanks anyway.
I found it. Thanks anyway. The first number controls the position.
print "You need to save £{0:.2f} each month.".format(finance) print "To reach the target of £{0:.2f}.".format(cost)I tried this but it just gives the same value in both positions.
print "You need to save £{0:.2f} each month to reach the target of £{0:.2f}".format(finance,cost)I'm pulling my hair out. Well, what's left of it.

I found it. Thanks anyway.
I found it. Thanks anyway. The first number controls the position.