我已经使用socket建立了一个irc bot。我添加了一些命令,但我想添加一个“poll”功能。 理想情况下,机器人会获得这种格式的命令:
!poll <name> <opt1> <opt2> <opt3> <time>
如何在一段时间后检查投票和结束投票的用户?
提前致谢,
绝望的Python初学者。
编辑:非常感谢回复人员,我使用全球变量(我知道,我知道),因为我无法弄清楚如何做到这一点。再次,非常感谢!答案 0 :(得分:1)
好吧,我的Python开始变得有点生气,但我想我可以回答一下 - 但这可能不是最好的答案。
如果您打算一次进行多次民意调查,您可以实现一个包含Poll等自定义类的多个实例的字典。这是一个可能的解决方案:
class PollVotes(object):
def __init__(self):
self.votes = []
self.stoptime = "some date/time" #I can't remember how to do this bit ;)
def add_vote(self, vote_value):
self.votes.append(vote_value);
def tally_votes(self):
return self.votes.size()
def has_closed(self):
if time_now >= self.stoptime: # I forget how you'd do this exactly, but it's for sake of example
return True
else:
return False
#then use it something like this
poll_list = {}
#irc processing...
if got_vote_command:
if poll_list["channel_or_poll_name"].has_ended():
send("You can no longer vote.")
else:
poll_list["channel_or_poll_name"].add_vote(persons_vote)
#send the tally
send("%d people have now voted!" % poll_list["channel_or_poll_name"].tally_votes())
当然,您必须编辑投票类以满足您的需求,即允许投票中的多个值,以记录投票的人(如果您需要),等等。
至于检查轮询是否已结束,您可以编辑轮询类以具有停止时间,并且具有返回True / False的函数,无论该时间是否已经过去。可能会查看datetime模块的文档......?
无论如何,希望这会有所帮助。