2

文字列を三重引用符で囲まれた文字列に変換するにはどうすればよいでしょうか?

x = "y"

の中へ:

x = """y"""
4

2 に答える 2

4

あなたはそうしない。トリプル クォートで囲まれた文字列は単なる表記法であり、通常の 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 つの方法の最終結果はまったく同じです。

于 2013-02-03T12:32:35.860 に答える
0

You can escape quotes using \ character. I don't know exactly how does Python contacnate strings, but it would look similar to:

x = "\"\"y\"\"";
于 2013-02-03T12:33:02.463 に答える