0
改行文字を含む文字列を、改行文字が保持されている文字列のリストに分割する方法はありますか?改行でのPython分割文字列と改行の維持
"amount\nexceeds"
はtrueを渡す、使用splitlines()
["amount\n", "exceeds"]
改行文字を含む文字列を、改行文字が保持されている文字列のリストに分割する方法はありますか?改行でのPython分割文字列と改行の維持
"amount\nexceeds"
はtrueを渡す、使用splitlines()
["amount\n", "exceeds"]
を生成します:
"amount\nexceeds".splitlines(True)
あなたが得られます。
["amount\n", "exceeds"]
を