我正在创建一个计算机登录代码,在出现大量故障后会将您锁定。
但代码会返回UnboundLocalError
变量上的attempts
。
我已经attempts
全球化,但它没有改变任何东西。它是在
if (user == username) and (passwd == password):
`print("You are logged on")`
else:
attempts += 1
if attempts == 3:
print("You have been locked out of your computer")
time.sleep(60)
所有这些都在一个函数中,并尝试global
。
有人可以帮忙吗?