Answers for "how to use variables in strings python"

0

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.
Posted by: Guest on July-24-2020

Code answers related to "how to use variables in strings python"

Python Answers by Framework

Browse Popular Code Answers by Language