【Python練習】抽獎小程式
阿新 • • 發佈:2019-01-30
1.做個抽獎程式,可以輸入一個人的名字和抽獎號,然後隨機抽取存在的抽獎號,程式可以指定抽取次數,抽取後顯示抽獎號和名字,全部抽取完成後輸出抽獎的總結果演算法:1 能夠死迴圈讀入不同的名字和抽獎號,使用字典儲存,在輸入done的時候退出死迴圈。2 輸入抽獎的次數,儲存到一個變數中。3 使用random.shuffle或者choice來隨機抽獎抽獎,使用for迴圈抽取設定的次數,4 使用新的字典變數儲存抽獎的結果,並輸出。
import random pool={} while 1: user_input_content=raw_input("please input No and name,sep by ,:") if user_input_content.lower()=="done":break no,name=user_input_content.split(",") pool[no]=name print pool while 1: try: lotte_times=int(raw_input("please input lotter times:")) except: print "please input a int number bigger than 0,try again." continue if lotte_times>0: break else: print "please input a int number bigger than 0,try again." print "lotte times:",lotte_times result={} for i in range(lotte_times): r=random.choice(pool.keys()) result[r]=pool[r] del pool[r] print result.values()