multiline_string = (
    'one'
    'two'
    '\n'
    '\\'
)


raw_string = r'\\'


second_multiline = """
This is a text with \a and trailing backslash char: \\
"""


second_multiline = """
This is trailing backslash line break: \
and next line.
"""


third_multiline = """
This is trailing backslash line break with extra spaces: \
and next line.
"""


fourth_multiline = """\
This is a multiline block with no prepended newline
and next line.
"""


fifth_multiline = '''\
This is a multiline block with no prepended newline
and next line.
'''


multiline_string = 'first line\
second line'


if multiline_string == '' and \
    1 == 1:
    print('Error!'\
    )


multiline_string\
    .rstrip()\
    .lstrip()


1 + some \
    .call()
