temp = input("请输入密码:") password = "我好喜欢你" times=3 while times>0: if "*" in temp: temp=input("密码中不能含有“*”号!您还有3次机会!请重新输入:") elif temp == password: break temp=input("密码错误,您还有"+str(times-1)+"次机会!请重新输入:") times = times -1 print("密码正确,进入程序...")
Posted sunshining-f
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了009 分支与循环-小甲鱼课后作业相关的知识,希望对你有一定的参考价值。
temp = input("请输入密码:") password = "我好喜欢你" times=3 while times>0: if "*" in temp: temp=input("密码中不能含有“*”号!您还有3次机会!请重新输入:") elif temp == password: break temp=input("密码错误,您还有"+str(times-1)+"次机会!请重新输入:") times = times -1 print("密码正确,进入程序...")
以上是关于009 分支与循环-小甲鱼课后作业的主要内容,如果未能解决你的问题,请参考以下文章