python摇骰子猜大小的小游戏

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python摇骰子猜大小的小游戏相关的知识,希望对你有一定的参考价值。

#小游戏,摇筛子押大小的小游戏
import random
#定义摇筛子的函数:
def roll_dice(number = 3,points = None):
    print (‘<<<<< Roll The Dice >>>>>‘)
    if points is None:
        points = []
    while number > 0:
        point = random.randrange(1,7)
        points.append(point)
        number = number - 1
    return points

#将点数转换为大小的函数:
def roll_result(total):
    isBig = 11 <= total < 18
    isSmall = 3 <= total < 10
    if isBig:
        return ‘isBig‘
    elif isSmall:
        return ‘isSmall‘

#开始游戏的函数;
def start_game():
    print (‘<<<<< GAME START >>>>>‘)
    choices = [‘isBig‘,‘isSmall‘]
    your_choices = input(‘isBig or isSmall:‘)
    if your_choices in choices:
        points = roll_dice()
        total = sum(points)
        youWin = your_choices == roll_result(total)
        if youWin:
            print(‘The points are‘, points, ‘You win !‘)
        else:
            print(‘The points are‘, points, ‘You lose !‘)
    else:
        print(‘Invalid Words‘)
start_game()

  

以上是关于python摇骰子猜大小的小游戏的主要内容,如果未能解决你的问题,请参考以下文章

# python实现CRAPS赌博游戏(摇骰子)

Python-使用tkinter实现的摇骰子小游戏

python掷骰子游戏

用python编一个扔骰子猜大小的游戏,要求三局两胜制

python实现简单投资复利函数以及实现摇骰子猜大小函数

Python学习-55 小游戏- 猜大小