美文网首页
2018-08-24 摇色子 - 小游戏

2018-08-24 摇色子 - 小游戏

作者: 莫希子西 | 来源:发表于2018-08-24 15:43 被阅读0次
image.png
import random

def RollDice(numbers=3, points=None):
    print('<<<<ROLL the Dice!>>>>')
    if points is None:
        points = []
    while numbers > 0:
        point = random.randrange(1, 7)
        points.append(point)
        numbers = numbers - 1
    return points


def RollResult(total):
    isBig = 11 <= total <= 18
    isSmall = 3 <= total <= 10
    if isBig:
        return 'BIG'
    elif isSmall:
        return 'SMALL'

def start_game():
    print('<<<<<GAME STARTS>>>>>')
    money = 1000
    choices = ['BIG', 'SMALL']
    while money != 0:
        your_Choice = input('BIG or SMALL:')
        while your_Choice not in choices:
            if your_Choice == 'E':
                exit()
            else:
                your_Choice = input('BIG or SMALL again:')
        your_bet = input('Your bet:')
        while int(your_bet) > money or int(your_bet) < 1:
            your_bet = input('Invalid bet, please bet again:')
        points = RollDice()
        total = sum(points)
        youwin = your_Choice == RollResult(total)
        if youwin:
            money = money + int(your_bet)
            print('your points is:', points, "You WIN",
                'Your money now is:', money)
        else:
            money = money - int(your_bet)
            print('your points is:', points, "You LOSE"),
            print('Your money now is:', money)
    print('No meney to bet now! You lose ALL')
    print('<<<<<Game Over>>>>>')
    exit()

start_game()

摇色子 - 小游戏 测试:


image.png

相关文章

  • 2018-08-24 摇色子 - 小游戏

    摇色子 - 小游戏 测试:

  • Craps 摇色子游戏

    Craps赌博游戏 - 两个色子第一次摇色子如果摇出了7点或11点 - 玩家胜如果摇出了2点、3点或12点 - 庄...

  • Python小游戏----猜色子

    代码框架如下 代码版本、作者、时间等等信息 设置编码格式引入资源模块 游戏版本名称游戏具体规则所属版权申明 定义初...

  • 微信摇骰子小程序

    好玩的小程序-微信摇骰子小程序-ktv喝酒摇骰子-摇骰子游戏-酒桌游戏微信摇骰子(摇色子)小程序源码分享、学习交流。

  • 六个四

    但凡上过酒场的人,推杯换盏之间,大概都会玩摇色子的游戏,色子的玩法有很多,比如吹牛呀,比大小啦,猜单双...

  • ***-2

    编写一个函数,求1+2+3+...+N编写一个函数,求多个数中的最大值编写一个函数,实现摇色子的功能,打印n个色子...

  • 金融 |《说谎者的扑克牌》重点知识

    说谎者的扑克牌 华尔街投行交易师中广泛流传的赌博游戏。类似于我们在KTV玩色子,一圈人摇色子,轮着喊,3个6......

  • 色子

    (童年回味) 记得小时候,我们村里的人时兴赌色子。 农闲时节,尤其是春节前后,一个小村庄上常会摆下两三个赌场。掷色...

  • Flex布局:色子篇

    参考资料:Flex布局教程:实例篇 色子 色子外形 色子的外形主要通过box-shadow和border-radi...

  • 胸中怀有强烈的愿望

    戴师傅 2018-08-24 2018-08-24 20:32 打开App (稻盛哲学学习会)打卡第12丨天 姓名...

网友评论

      本文标题:2018-08-24 摇色子 - 小游戏

      本文链接:https://www.haomeiwen.com/subject/eltiiftx.html