Multitext

How write multitext (strings) in python?

string=
"
one

two

  three

"
OUT = string

ok. solved

string="""
one

  two

    three
"""
    OUT = string