post=input(str("Enter your post below: \n"))
addpost=pickle.dump(post, open("The Wall.txt","ab"))
print(addpost)
不知道为什么这段代码会返回“无”而不是输入的内容......
答案 0 :(得分:4)
因为pickle.dump
将对象写入文件,并返回None
。
你可能想要
addpost = pickle.load(open("The Wall.txt", "rb"))
代替。