码迷,mamicode.com
首页 > 编程语言 > 详细

Python--猜数游戏

时间:2019-04-10 23:44:53      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:random   git   port   sdi   img   info   else   class   import   

#猜数游戏
import random
num_random=random.randint(10,99)
n=0
while True:
    usr_input=input(请输入一个10到99的整数:)
    if usr_input=="q":
        print("程序结束")
        break
    if usr_input.isdigit():
        usr_input = int(usr_input)
        if usr_input>num_random:
            print(猜大了)
            n=n+1
            
        elif usr_input<num_random:
            print(猜小了)
            n=n+1
            
        else:
            print(猜对了,你猜了{}次。.format(n))
            break
    
    

               错了无数回,同学提示了无数回才敲对,心累。

技术图片

Python--猜数游戏

标签:random   git   port   sdi   img   info   else   class   import   

原文地址:https://www.cnblogs.com/khqhbu/p/10686836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!