Day-28 f-strings
String formatting in python
String formatting can be done in python using the format method.
txt = "For only {price:.2f} dollars!"
print(txt.format(price = 49))
f-strings in python
It is a new string
codingsplash.hashnode.dev3 min read