gpt4 book ai didi

python - 如何在 python 中进行计数,以便程序在特定数量的计数后结束?

转载 作者:行者123 更新时间:2023-11-28 22:07:17 25 4
gpt4 key购买 nike

我是新手,我需要知道如何修改密码猜测程序以跟踪用户输入错误密码的次数。如果输入超过 3 次,那么它应该打印“This seems to be complicated”并且程序应该结束。密码猜测程序是

password="abcd"
while password != "password"
password = raw_input("Password:")
print "Welcome in"

我应该如何修改这个程序来获得我之前提到的程序?谁能指导我?谢谢。

最佳答案

for trial in range(3):
if raw_input('Password:') == 'password':
break
else:
# didn't find password after 3 attempts
sys.exit(10)
print 'Welcome in'

关于python - 如何在 python 中进行计数,以便程序在特定数量的计数后结束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2357788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com