-1

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

4

2 回答 2

0

好吧,因为您没有显示代码,请尝试以下操作:

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

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

于 2013-06-10T03:12:47.413 回答
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 

ETC

于 2017-09-04T11:01:46.940 回答