编程语言
首页 > 编程语言> > [编程启蒙游戏] 1. 猜数字

[编程启蒙游戏] 1. 猜数字

作者:互联网

文章目录

1. 游戏前提

2. 游戏目的

3. python代码

# python 3.7 环境
while True:
    n = int(input("请输入一个数来猜:\n"))
    count = 1
    print(('\n'*15))
    g = int(input("请猜:\n"))
    while g != n:
        if g < n:
            g = int(input("没猜对,{} 小了\n".format(g)))
        else:
            g = int(input("没猜对,{} 大了\n".format(g)))
        count += 1
    print("恭喜你猜对了, 答案是 %d,共猜了 %d 次" %(n, count))

4. 玩一玩

标签:count,游戏,format,int,编程,python,启蒙,input
来源: https://blog.csdn.net/qq_21201267/article/details/106973098