Answers for "how to make string python"

2

how to insert a variable into a string without breaking up the string in python

name = "Dan"
age = 21
#you need to have that "f" before the string
name_and_age = f"My name is {name}, and I am {age} years old."
print(name_and_age)
Posted by: Guest on March-07-2020
16

how to create string in python

string = "this is string"
#or
string = 'this is also string'
Posted by: Guest on April-15-2020
3

how to create a string in python

var1 = "A String"
Posted by: Guest on March-08-2020
2

define a string in python

string1 = "something"
string2 = 'something else'
string3 = """
something
super
long
"""
Posted by: Guest on December-04-2020

Code answers related to "how to make string python"

Python Answers by Framework

Browse Popular Code Answers by Language