下面是一個簡單的python程式碼範例,實作一個抽獎小程式:
import random participants = ['Alice', 'Bob', 'Charlie', 'David', 'Eve'] def draw_winner(participants): winner = random.choice(participants) return winner print("抽奖开始!") input("请按 Enter 键开始抽奖:") winner = draw_winner(participants) print(f"恭喜 {winner} 获得抽奖奖品!")
在這個範例中,我們首先定義了一個參與抽獎的參與者清單 participants
,然後編寫了一個 draw_winner
函數來隨機選擇獲獎者。最後,透過 input
函數等待使用者按下 Enter 鍵開始抽獎,並輸出獲獎者的資訊。
你可以根據自己的需求和想法來擴展和改進這個範例,增加更多的功能,例如記錄已中獎的人員、設定獎項等。希望這個範例可以幫助你!
以上是如何使用Python實現抽獎小程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!