Inside the string, we can specify both fixed text and part of the text defined by the format function, which will consist of separately specified sections:
print(“This cat has {0} kittens and a {1}”.format(2,”tail”))
Instead of using numbers inside curly braces, you can immediately set the value of the variable in them – a,b,c:
print(‘quantity: ({a}, {b}, {c})’.format(a=5,b=2,c=4))