he ________ method allows you to format and insert values into a string. code example
Example: embed variables python
#Pre 3.6
print('Hi, my name is {name} and my age is {age}'.format(**locals()))
#After 3.6
print('Hi, my name is {name} and my age is {age}')