python_string_format_2.py:
x
 
quantity = 5
itemno = 789
price = 24.36
myorder = "I want {} pieces of item {} for {} dollars."
print(myorder.format(quantity, itemno, price))