Python语法练习--while循环,,age=26coun
Python语法练习--while循环,,age=26coun
age=26count=0whilecount<4:intput=int(input("请猜猜我的年龄:"))ifintput<age:print("输入过小,请重新输入")elifintput>age:print("输入过大,请重新输入")elifintput==age:print("答案正确,游戏退出")breakcount=count+1printcountelse:print("输入错误超过3次,游戏退出")
本文出自 “半夏轻浅的博客” 博客,请务必保留此出处http://sublime.blog.51cto.com/8856101/1829641
Python语法练习--while循环
评论关闭