猜数字简化版一

Posted mxdboke

tags:

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

def yanse(*args):
    print(‘33[5;%s;48m %s 33[0m‘ % (args))

def menu():
    a = ‘开始猜数字游戏‘
    b = ‘只有3次机会‘
    yanse(31,a.center(40, ‘#‘))
    yanse(31,b.center(42, ‘#‘))

def GN(c):
    def wrapper():
        menu()
        yanse(31,‘gogogo....‘)
        c()
    return wrapper
@GN
def caiquan():
    SJ = random.randint(1,10)
    count = 0
    while count < 3:
        num = input(‘input you num: ‘)
        if num.isdigit():
            num = int(num)
            if num > SJ:
                yanse(34,‘BIG‘)
            elif num < SJ:
                yanse(32,‘SMALL‘)
            else:
                yanse(31,‘BINGO‘)
                return

        else:
            print(‘num is letters‘)
            count-=1
        count += 1
caiquan()

  

以上是关于猜数字简化版一的主要内容,如果未能解决你的问题,请参考以下文章

猜数字游戏 - Java版

猜数字小游戏(C语言版)

验证码和猜数字

为啥我的 C 代码片段不起作用?简化版可以。为 unsigned long long 传递不带 VA_ARGS 的 args

猜数字小游戏

用信息论玩猜数字