def start():
if os.path.exists(fileName):
f = open(fileName, "rb")
d = pickle.Unpickler(f)
data = d.load()
f.close()
else:
data = {}
return data
########################################################################################################################
评论列表
文章目录