Answers for "how to put a in a string python"

16

how to create string in python

string = "this is string"
#or
string = 'this is also string'
Posted by: Guest on April-15-2020
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
7

python add strings

var1 = "foo"
var2 = "bar"
var3 = var1 + var2
Posted by: Guest on December-26-2020

Code answers related to "how to put a in a string python"

Python Answers by Framework

Browse Popular Code Answers by Language