一个简单例子阐明while True与if的配合使用方法


#!/usr/bin/env python
oldboy_age = 56
#while True 是个死循环,需要用break来退出
while True:
    get_num = int(input("Pls guess oldboy\'s age:"))
    if get_num == oldboy_age:
        print("Oldboy is {age} years old.".format(age=get_num))
        break
    elif get_num > oldboy_age:
        print("Your input is larger than his age.")
    else:
        print("Your input is smaller than his age.")

运行结果:

D:\Python\Python36\python.exe "E:/python 14/day0101.py"
Pls guess oldboy's age:99
Your input is larger than his age.
Pls guess oldboy's age:22
Your input is smaller than his age.
Pls guess oldboy's age:56
Oldboy is 56 years old.

Process finished with exit code 0

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM