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.
Python で長いテキスト (改行と段落を含む) の文字列を宣言したいと思います。これは可能ですか?テキストをコピーして引用符に貼り付けるだけの場合、Python は最初の行のみを認識し、テキスト全体が必要な場合はすべての改行を手動で削除する必要があります。これが可能である場合、テキストに引用符 ("") が含まれていても可能でしょうか?
三重引用符を使用します:
mytext = """Some text Some more text etc... """
文字列コンテンツを """ で囲み、複数行の文字列であることを示します。
>>>a = """ ...this ...is ...a ...multi-line ...string ...""" >>> a 'this\nis\na\nmulti-line\nstring\n'