用python写一段密码锁的代码,要求密码是960610,只有当我输入正确时,答案是欢迎回家。输入错误时,显示密码错误,并且只能输入三次密码,超过三次后,显示你的次数已用完,
时间: 2023-04-10 22:03:18 浏览: 107
python密码错误三次锁定(实例讲解)
以下是密码锁的Python代码:
password = "960610"
count = 0
while count < 3:
input_password = input("请输入密码:")
if input_password == password:
print("欢迎回家!")
break
else:
print("密码错误!")
count += 1
if count == 3:
print("你的次数已用完!")
阅读全文