#若输入年龄正确,完成循环,最多只能输入三次,停止本次循环(使用while循环)age = 28count = 0 while count<3: _age = int(input("age:")) if _age==age: print("you got it!") break elif _age>age: print("think smaller") else: print("think bigger") count +=1else: print("you tried many times")
#若输入年龄正确,完成循环,最多只能输入三次,停止本次循环(使用for循环)
age = 28 for i in range(3): _age = int(input("age:")) if _age==age: print("you got it!") break elif _age>age: print("think smaller") else: print("think bigger") else: print("you tried many times")
原文地址:https://www.cnblogs.com/mahaigang/p/9848976.html
时间: 2024-10-16 04:27:44