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.
post=input(str("Enter your post below: \n")) addpost=pickle.dump(post, open("The Wall.txt","ab")) print(addpost)
このコードが入力されたものではなく「なし」を返す理由がわかりません...
pickle.dumpオブジェクトをファイルに書き込み、 を返すためですNone。
pickle.dump
None
あなたはおそらくしたいです
addpost = pickle.load(open("The Wall.txt", "rb"))
代わりは。