我陷入了一个看似简单的任务,我正在为我的频道开发Python Twitch IRC Bot。我有一个积分系统都搞清楚了,我认为它有效,但我发现每次重新启动程序时,包含用户余额的列表都会重置。
这是因为我每次运行程序时都会在脚本开头声明空列表。如果用户聊天并且他们不在欢迎用户列表中,那么机器人将欢迎他们并将他们的名字添加到列表中,并将他们的余额添加到相应的列表中。
有没有我可以解决这个重置问题并使其在每次程序重启时都不会重置列表?提前致谢,这是我的代码:
welcomed = []
balances = []
def givePoints():
global balances
threading.Timer(60.0, givePoints).start()
i = 0
for users in balances:
balances[i] += 1
i += 1
def welcomeUser(user):
global welcomed
global balances
sendMessage(s, "Welcome, " + user + "!")
welcomed.extend([user])
balances.extend([0])
givePoints()
#other code here...
if '' in message:
if user not in welcomed:
welcomeUser(user)
break
(我曾尝试使用全局变量来克服这个问题,但是他们没有工作,尽管我猜测我没有正确使用它们:P)
答案 0 :(得分:1)
尝试使用json
模块转储并加载列表。您可以在加载列表时捕获文件打开问题,并使用它来初始化空列表。
import json
def loadlist(path):
try:
with open(path, 'r') as listfile:
saved_list = json.load(listfile)
except Exception:
saved_list = []
return saved_list
def savelist(path, _list):
try:
with open(path, 'w') as listfile:
json.dump(_list)
except Exception:
print("Oh, no! List wasn't saved! It'll be empty tomorrow...")