これはテキストファイルに追加するコードで、プログラムを実行した後、メモ帳ファイルをチェックしてその結果を確認しました。私が出会ったすべての名前はすべて組み合わされていることがわかりました。どのようにして名前をメモ帳ファイルに分割することができますか?メモ帳ファイルのテキストをPythonで分割する
import time
print("Please contact a technician - what is your name?")
name = input(">")
print("I will allocate your name as a case number for a"\
" future technician, so that they can assist you.")
fi = open("casenumbers.txt", "a")
fi.write(str(name))
fi.close()
print("The name you should contact us with is",name,"")
time.sleep(20)
名前を新しい行に追加しますか? fi.write( "\ n" + str(name))を使用してください – Shijo
入力は何ですか?現在の出力は何ですか?期待される結果は何ですか? – jonrsharpe
入力は単なる名前ですが、複数の名前を一緒に入力すると、メモ帳ファイルの出力は名前が別々になることを期待してすべての名前の長い文字列になります – Kuro