你会如何使用python程序记录投票?

时间:2013-06-10 03:00:33

标签: python html survey

我必须使用html和python进行调查。 html已完成,但使用python记录调查的答案无法正常工作。我尝试编程,以便在选中单选按钮时,程序将提高投票数,但我一直收到语法错误。我不太清楚如何全力以赴。帮助将不胜感激。谢谢。

2 个答案:

答案 0 :(得分:0)

很好,因为你没有代码尝试类似的东西:

if selection1 == True
    sel1_votes+=1
if selection2 == True
    sel2_votes+=1
#etc

selection1是第一个选择的投票按钮,sel1_votes是该选择的投票数

答案 1 :(得分:0)

基于什么序列说 尝试将其置于while循环中,例如

selecting = 1
while selecting == 1:
    if selection1 == True
        sel1_votes+=1
        selecting = selecting + 1
    if selection2 == True
        sel2_votes+=1
        selecting = selecting + 1