Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
実際の次の文字列を出力したい\n:\n
\n
使用する
print "\\n"
または生の文字列
print r"\n"
文字列に関するチュートリアルをご覧ください。
\別のでエスケープし\ます。
\
\nあなたは何とか逃げなければなりません
シーケンスだけ
または文字列全体を生としてマークします
バックスラッシュをエスケープする必要があります。
>>> print("\\n") \n