0
post=input(str("Enter your post below: \n"))
addpost=pickle.dump(post, open("The Wall.txt","ab"))
print(addpost)

不知道为什么此代码返回“无”而不是输入的内容...

4

1 回答 1

4

因为pickle.dump将对象写入文件,并返回None.

你可能想要

addpost = pickle.load(open("The Wall.txt", "rb"))

反而。

于 2012-10-14T08:00:14.847 回答