-1
このコードをSuggestions.txtに追加するには、既存のコンテンツ(つまり既存のコンテンツの2行下にあるもの)を置き換える代わりにSuggestions.txtに追加することができます。ファイルを置き換える代わりにファイルに追加する方法
input1 = input("What is your name?: ")
input2 = input("What is your suggestion for another issue to be solved: ")
input3 = input("Do you know how to solve this issue? If not press enter: ")
input4 = input("What keywords would the user need to use to access the solution? \n Press enter to leave blank: ")
file = open("Suggestions.txt", "w")
file.write("Name: " +input1 + "\n")
file.write("Suggestion: " +input2 + "\n")
file.write("Solution: " +input3 + "\n")
file.write("Keywords: " +input4 + "\n")
file.close()
複数の人が、次の人によって上書きされることなく、自分の提案が何であるかを書くことができるようになりました。
私は以下のように自動的に追加するようにしたいと思います。これは他のスレッドには当てはまりません。
可能な複製(http://stackoverflow.com/questions/4706499/how-do-you-ファイルに追加) – bejado
これは重複していません。 –
あなたの質問がどう違うか教えてください。 – bejado