declare string in python code example

Example 1: how to create string in python

string = "this is string"
#or
string = 'this is also string'

Example 2: print string python

str1 = "Hello World"
print(str1)

Example 3: how to create a variable in python

variable1 = "value" # string
variable2 = 1000000 # integer
variable3 = 10000.0 # real/float
variable4 = True # boolean: True or False

Example 4: variables in python

x = 5
y = "John"
print(x)
print(y)

Example 5: how to create a string in python

var1 = "A String"

Example 6: define a string in python

string1 = "something"
string2 = 'something else'
string3 = """
something
super
long
"""