【发布时间】:2012-10-14 03:24:46
【问题描述】:
wally=pickle.load(open("The Wall.txt","rb"))
usernamey=pickle.load(open("username1.txt","rb"))
wu=("\n", wally, "\n", usernamey, "\n")
apost=input("Enter your post below: \n")
pwickle=pickle.dump(wu, apost, open("The Wall.txt","wb"))
不知道为什么这不起作用,出现错误消息:
pwickle=pickle.dump(wu, apost, open("The Wall.txt","wb"))
TypeError: an integer is required
【问题讨论】: