我必须使用html和python进行调查。 html已完成,但使用python记录调查的答案无法正常工作。我尝试编程,以便在选中单选按钮时,程序将提高投票数,但我一直收到语法错误。我不太清楚如何全力以赴。帮助将不胜感激。谢谢。
答案 0 :(得分:0)
if selection1 == True
sel1_votes+=1
if selection2 == True
sel2_votes+=1
#etc
selection1
是第一个选择的投票按钮,sel1_votes
是该选择的投票数
答案 1 :(得分:0)
selecting = 1
while selecting == 1:
if selection1 == True
sel1_votes+=1
selecting = selecting + 1
if selection2 == True
sel2_votes+=1
selecting = selecting + 1
等