When I select n and say that I do not want to enter another password, the program is prompting me for a password anyway. Any ideas?
@akhripasta084 ай бұрын
Its because in the main function, in the while loop the loop variable should be ask_pw which is updated in the loop, not check_pwd as such a variable does not exist
@supratimbose15594 ай бұрын
just put exit () when value is = n
@kitkat31634 ай бұрын
I have error on line 62 , 71
@ig_Z0R09 ай бұрын
my error in line 69 what is the meaning of __main__
@TheCodeCity9 ай бұрын
__main__ is a special variable that represents the name of the script or module that is being executed. When a Python script or module is run directly by the Python interpreter, its __name__ attribute is set to "__main__".