1. Python 自体は、文字列
s = 'i\'m superman' print(s) # i'm superman
2 に引用符を追加する場合など、一部の特殊文字をエスケープするために \ を使用します。Python ではバックスラッシュも使用できます。行末の行継続文字として。
例:
hello = "This is a rather long string containing\n\ several lines of text just as you would do in C.\n\ Note that whitespace at the beginning of the line is\ significant." print(hello)
改行文字は、バックスラッシュが破棄された後の改行文字である \n で表す必要があることに注意してください。上記の例では、次のように出力されます:
This is a rather long string containing several lines of text just as you would do in C. Note that whitespace at the beginning of the line is significant.
Python のエスケープ文字:
Python 関連の技術記事の詳細については、 を参照してください。 Python チュートリアル 列で学習してください。
以上がPythonのバックスラッシュは何を意味しますかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。