❶ 網路投票系統或代碼
網上有得下載。
到【源碼站長】。
❷ 如何用python來做一個投票app
django的教程就是一個投票的例子,如果是要做網頁版的,可以參考下,很不錯,https://docs.djangoproject.com/en/1.6/intro/tutorial01/
可以看下鏈接
❸ 幫忙完善在線投票系統源程序
不懂!
❹ 用python寫了個投票程序,但出現錯誤,麻煩看看錯在哪
試了半天才弄明白是怎麼回事。是中英文的問題。你在votes.txt里的冒號放的是中文冒號:,而你在程序里split用的是英文的冒號:, 結果split後得到的內容是一個,而不是兩個。
這樣你將一個內容賦值給兩個就會出現
ValueError: need more than 1 value to unpack
你可以列印print my_love
這樣就知道為什麼了。
❺ python新手求助 寫一個投票的代碼 def vote() 有三種,yes,no,abstain
defvote(stra):
yesstr=['yes','y']
nostr=['no','n']
abstainedstr=['abstained','a']
count=0
yescount=0
stra=stra.replace(',','')
foriinstra.split():
lowerstr=i.lower()
iflowerstrinyesstr:
yescount+=1
count+=1
eliflowerstrinnostr:
count+=1
ifyescount==count:
return'proposalpassesunanimously'
ifyescount*1.0/count>=2.0/3.0:
return''
ifyescount*1.0/count>=0.5:
return''
return'proposalfails'
if__name__=='__main__':
stra=raw_input('Entertheyes,no,:
')
printvote(stra)
❻ 用python和django做一個投票網站
我留個記錄,看誰會這么好心有現成的項目,我也想參考參考
❼ python如何編一個投票系統
LI=['張三','李四','劉五']
definputs(prompt,selectlist,eof='EOF'):
whileTrue:
choice=raw_input(prompt)
ifchoice==eof:
break
elifchoiceinselectlist:
yieldchoice
else:
print"onlyin%s"%selectlist
collects=map(None,inputs("投票",LI,eof='投票結束'))
#bydict
counter={}
fornameincollects:
counter[name]=counter.get(name,0)+1
forname,cinsorted(counter.items(),key=lambdax:x[1],reverse=True):
printname,c
#bycollections.Counter
importcollections
counter=collections.Counter(collects)
forname,cincounter.most_common(10):
printname,c
❽ Python做一個投票APP
看django官方教程,有一個投票app的例子。
❾ 跪求一段網上投票系統的代碼
現在是淡季,沒有活了,等快過年了吧,現在建群也拉不到兄弟了,並且有群必須有好的人季關系才行,要不接不到活,兄弟們也都跑了。呵。。。我是做投票軟體的。也就是你說的投票上家,明白了嗎。想找我們就到搜索引擎里搜 投票軟體
❿ 一個簡單的投票系統
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/connVote.asp" -->
<%
if(Request("rResult") <> "") then '=================注意 換行
Command1__strUpdate = Request("rResult")
set Command1 = Server.CreateObject("ADODB.Command")
Command1.ActiveConnection = MM_connVote_STRING
Command1.CommandText = "UPDATE tVote SET " + Replace(Command1__strUpdate, "'", "''") + "=" + Replace(Command1__strUpdate, "'", "''") + "+1"
Command1.CommandType = 1
Command1.CommandTimeout = 0
Command1.Prepared = true
Command1.Execute()
Response.Write ("<script>alert('投票完畢!')</script>")
ELSE
Response.Write ("<script>alert('rResult為空!')</script>")
END IF '===========注意 結束判斷
Response.Redirect("result.asp")
%>