import random
# 10万円のパターンを462個
lots = [100000]*462
# 4630万円をひとつだけ追加
lots.append(46300000)
# 100000,100000,...46300000のリストが作成されます。
# 0からリストの数の間でランダムな数字を取得
randint = random.randrange(0, len(lots))
# ランダムに決められた金額が決定
lot = lots[randint]
# ランダムに決められた金額が46300000なら大当たりとする
if lot == 46300000:
print("大当たり!!あなたの当選金額は{}".format(lot),"円でした。")
else:
print("残念でした・・あなたの当選金額は{}".format(lot),"円でした。")