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

Python自动化3.0-------学习之路-------while循环(猜字游戏)!

时间:2017-07-22 15:29:36      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:bre   数字   conf   --   while   计数   count   put   tin   

猜数字程序:

#Author:Mego

age_mego =30

count =0

while count <3:

        guess_age =int(input("请输入想猜的数字:"))

        if guess_age==age_mego:

            print("输入的数字正确!")

            break

        elif guess_age > age_mego:

           print("输入的数字大了")

        else:

          print("输入的数字太小!")

       count +=1

#输入三不正确,重置计数器

       if count ==3:

          countine_confirm=input(你是否还想继续输入:")

           if  countine_confirm !=‘n‘:

                count =0

Python自动化3.0-------学习之路-------while循环(猜字游戏)!

标签:bre   数字   conf   --   while   计数   count   put   tin   

原文地址:http://www.cnblogs.com/matang/p/7221306.html

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