import pickle
word = "I love China"
with open('test.txt','wb') as f:
pickle.dump(word, f)
with open('test.txt','rb') as f:
temp = pickle.load(f)
print(temp)
word = "I love China"
with open('test.txt','wb') as f:
pickle.dump(word, f)
with open('test.txt','rb') as f:
temp = pickle.load(f)
print(temp)


被折叠的 条评论
为什么被折叠?



