Craps赌博游戏-python3

"""
玩家掷两个骰子,每个骰子点数为1-6,如果第一次点数和为7或11,则玩家胜;
如果点数和为2、3或12,则玩家输庄家胜。
若和为其他点数,则记录第一次的点数和,玩家继续掷骰子,直至点数和等于第一次掷出的点数和则玩家胜;
若掷出的点数和为7则庄家胜。

Version: 1.0.0
Author: Catherine
Data: 2019-03-11
"""
import random

x = random.randint(1, 7)
y = random.randint(1, 7)

s = x + y
if (s == 7) or (s == 11):
    print("1:{}".format(s))
    print("玩家胜!!!")
elif (s == 2) or (s == 3) or (s == 12):
    print("2:{}".format(s))
    print("庄家胜!!!")
else:
    mark1 = s
    s = 0
    while mark1 != s:
        x = random.randint(1, 7)
        y = random.randint(1, 7)
        s = x + y
        if s == 7:
            print("3:{}".format(s))
            print("庄家胜!!!")
            break
    if mark1 == s:
        print("4:{}".format(s))
        print("玩家胜!!!")
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值