inserting variables into string python code example
Example 1: insert into string python more than one
>>> shepherd = "Mary"
>>> age = 32
>>> stuff_in_string = "Shepherd {} is {} years old.".format(shepherd, age)
>>> print(stuff_in_string)
Shepherd Mary is 32 years old.
Example 2: insert value in string python
>>> shepherd = "Martha"
>>> age = 34
>>>
>>> stuff_in_string = f"Shepherd {shepherd} is {age} years old."
>>> print(stuff_in_string)
Shepherd Martha is 34 years old.
Example 3: embed variables python
print('Hi, my name is {name} and my age is {age}'.format(**locals()))
print('Hi, my name is {name} and my age is {age}')