#you can start a multiline string with either ''' or """
'''This is a
multiline
string.'''
"""It can be used as a
multiline comment
too."""
#You can assign a multiline string to a variable by using three quotes:
#we use it when we want to assign many lines in a variable in python
multiline_strings = """python is amazing ,
we can use it for many tasks ,
python is famous because python was not made to solve any kind of problem we
use it for many tasks , and this is how you declare multiline strigs """
print(multiline_strings
s = """ this is a very
long string if I had the
energy to type more and more ..."""
print("""
Multiline
String
""")
"""You can
use both
double quotes
"""
'''And
singel
quotes
'''
# in a normal string this will be displayed as
# And
singel
quotes
cmd = f"""line {1}
line {2}
line {3}"""