demo_string_formatting1.py:
price = 49 txt = "The price is {} dollars" print(txt.format(price))
➜ begtut>python demo_string_formatting1.py
The price is 49 dollars