python declaring strings code example
Example 1: how to create string in python
string = "this is string"
#or
string = 'this is also string'
Example 2: define a string in python
string1 = "something"
string2 = 'something else'
string3 = """
something
super
long
"""