Colab

x = """
Item 1:      112.50$
item 2:        2.99$
VAT:          17.00%
VAT AMOUNT:    3.45$
TOTAL:        18.34$ 
"""

print("{0: >20.2f}$".format(112))
print("{0: >20.2f}$".format(0.99))
print("{0: >20.2f}$".format((112 + 0.99) *0.17))

              112.00$
                0.99$
               19.21$
print("""
{0: >20.2f}$ 
{1: >20.2f}$
{2: >20.2f}$
{0: >20.2f}$
""".format(112, 0.99, 119.21))



              112.00$                 0.99$
              119.21$
              112.00$