Python语法练习--while循环【点击查看详情】
Python语法练习--while循环:age = 26 count = 0 while count < 4: intput = int(input("请猜猜我的年龄:")) if intput < age: print ("输入过小,请重新输入") elif intput > age: print ("输入过大,请
相关视频/文章