文字列を三重引用符で囲まれた文字列に変換するにはどうすればよいでしょうか?
x = "y"
の中へ:
x = """y"""
あなたはそうしない。トリプル クォートで囲まれた文字列は単なる表記法であり、通常の Python 文字列になります。
>>> x = "y"
'y'
>>> x = """y"""
'y'
三重引用符を使用して、改行を簡単に含めることができます。
"""\
Some longer string
with newlines in the text
is easier this way.
"""
より読みやすい:
"Some longer string\nwith newlines in the text\nis easier this way.\n"
しかし、文字列値を宣言するこれら 2 つの方法の最終結果はまったく同じです。
You can escape quotes using \ character. I don't know exactly how does Python contacnate strings, but it would look similar to:
x = "\"\"y\"\"";