我必须使用html和python进行调查。html已完成,但使用python记录调查的答案无法正常工作。我试图编程它,这样当单选按钮检查程序将提高的票数,但我不断收到一个语法错误。我不太确定如何全部解决。帮助将不胜感激。谢谢你。
3 回答
湖上湖
TA贡献2003条经验 获得超2个赞
既然您没有显示任何代码,请尝试以下操作:
if selection1 == True
sel1_votes+=1
if selection2 == True
sel2_votes+=1
#etc
selection1是第一个选择的投票按钮,并且sel1_votes是该选择的投票数量
茅侃侃
TA贡献1842条经验 获得超21个赞
根据序列说的内容,尝试将其放入while循环中,例如
selecting = 1
while selecting == 1:
if selection1 == True
sel1_votes+=1
selecting = selecting + 1
if selection2 == True
sel2_votes+=1
selecting = selecting + 1
添加回答
举报
0/150
提交
取消