declaring a string in python code example
Example 1: how to create string in python
string = "this is string"
string = 'this is also string'
Example 2: how to create a variable in python
variable1 = "value"
variable2 = 1000000
variable3 = 10000.0
variable4 = True
Example 3: variables in python
x = 5
y = "John"
print(x)
print(y)
Example 4: how to create a string in python
var1 = "A String"
Example 5: define a string in python
string1 = "something"
string2 = 'something else'
string3 = """
something
super
long
"""