标签:while div style class 年龄 += span 三次 input
猜年龄只能猜三次
age = 18 count = 0 while count<3: age = int(input("age:")) if age == 18: print("对了") exit() elif age >18: print("大了") else: print("小了") count +=1
age:50
大了
age:18
对了
标签:while div style class 年龄 += span 三次 input
原文地址:https://www.cnblogs.com/5444de/p/12375098.html