Imは、現在のものがない場合はtxtファイルを作成するpythonスクリプトを作成しようとしており、このテキストを次の行に「インデントする」と追加します。私は、文字列の途中でテキストを次の行にどのようにインデントすることができるのだろうかと思っています。みんな、ありがとう。端末のPythonスクリプトからtxtファイルにインデントする
import sys
if not os.path.exists(/Users/you/Desktop/AIMemory.txt) :
memory = open("AIMemory.txt","w")
print("Created A New Memory")
else :
print("Accessing Memory")
memory = open("AIMemory.txt", "r")
print(memory.read())
memory.close()
memory = open("AIMemory.txt", "a")
memory.write("Indent Me Somewhere Onto The Next Line")
"Ident Me ..."の前に "\ t"を入れようとしています –
それは私のために働いていないようですが、テキストをインデントして新しい行にプッシュしません。 – user3291150
最後に " \ n " –