Answers for "how to insert a value in a print statement 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
-1

insert into string python

>>> line = 'Kong Panda'
>>> index = line.find('Panda')
>>> output_line = line[:index] + 'Fu ' + line[index:]
>>> output_line
'Kong Fu Panda'
Posted by: Guest on July-24-2020

Code answers related to "how to insert a value in a print statement python"

Python Answers by Framework

Browse Popular Code Answers by Language