how to format a string pythong\ code example
Example 1: python string format
print("My name is {0} and I am {1} years old".format(name, age))
Example 2: String Formatting with the % Operator
>>> name = 'Bob'
>>> 'Hello, %s' % name
"Hello, Bob"
print("My name is {0} and I am {1} years old".format(name, age))
>>> name = 'Bob'
>>> 'Hello, %s' % name
"Hello, Bob"