Python_抽奖游戏

#p40_抽奖程序

#p40_抽奖程序
import random
prizes = ['鸡蛋','鸭蛋','鹅蛋','铁蛋']
i = random.choice(prizes)
print(i)

你可能感兴趣的:(Python,Python,抽奖)