首页 > 编程语言 > 详细

Python入门之练习题

时间:2018-03-18 22:03:37      阅读:191      评论:0      收藏:0      [点我收藏+]
  • 写循环猜年龄程序,猜错三次则打印提示信息并退出循环,猜对也打印提示信息并退出循环
count=0
while count < 3:
    num = input("猜年龄游戏:")
    guess = int(num)
    if guess == 18:
        print("恭喜你猜对了")
    elif guess > 18:
        print("大了")
    elif guess < 18:
        print("小了")
    count += 1
else:
    print("猜了三次都没猜对‘")
  • 写while循环嵌套的小例子,用一个tag控制所有while循环的退出
count=0
tag="True"
while True:
    if count >= 3:
        tag="False"
        break
    username = input("请输入用户名:")
    password = input("请输入密码:")
    if username == "hello" and password == "123":
        print("登录成功")
        while True:
            if count >= 3:
                print("猜了三次也没猜中!")
                break
            print("猜数字:")
            guess=int(input("请输入一个数字:"))
            if guess == 18:
                print("猜对了")
            elif guess > 18:
                print("大了")
            else:
                print("小了")
            count += 1
    else:
        print("用户名不存在或密码错误!")
        count +=1

 

Python入门之练习题

原文:https://www.cnblogs.com/zzzhfo/p/8597765.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!