Python Forum
[Tkinter] password with Entry widget
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] password with Entry widget
#6
If you don't know how to solve a problem like this you have a big hole in your understanding of Python variables and scope. You should do some reading because this same problem is going to keep reappearing in ever more devious ways until you understand what is going on. When I was first learning Python I found this useful:

https://www.geeksforgeeks.org/namespaces...in-python/

Variables defined inside a function exist in the function's scope (or namespace). These variables disappear once the function is done running. You cannot define the number of password tries inside your authorization function because each time authorization function is done running, the nb_attempt variable is forgotten (is deleted). You must define the nb_attempt variable somewhere else, in a scope/namespace that is not deleted.
Reply


Messages In This Thread
password with Entry widget - by TAREKYANGUI - Sep-16-2020, 03:16 AM
RE: password with Entry widget - by bowlofred - Sep-16-2020, 05:34 AM
RE: password with Entry widget - by TAREKYANGUI - Sep-16-2020, 08:37 PM
RE: password with Entry widget - by micseydel - Sep-17-2020, 06:01 PM
RE: password with Entry widget - by deanhystad - Sep-17-2020, 06:48 PM
RE: password with Entry widget - by TAREKYANGUI - Sep-22-2020, 01:56 PM
RE: password with Entry widget - by SnowwyWolf - Sep-23-2020, 08:53 PM
RE: password with Entry widget - by Yoriz - Sep-23-2020, 09:40 PM
RE: password with Entry widget - by TAREKYANGUI - Sep-24-2020, 05:27 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  ValueError: could not convert string to float: '' fron Entry Widget russellm44 5 4,359 Mar-06-2024, 08:42 PM
Last Post: russellm44
  [Tkinter] entry widget DPaul 5 3,445 Jul-28-2023, 02:31 PM
Last Post: deanhystad
  Tkinter Exit Code based on Entry Widget Nu2Python 6 5,461 Oct-21-2021, 03:01 PM
Last Post: Nu2Python
  method to add entries in multi columns entry frames in self widget sudeshna24 2 3,058 Feb-19-2021, 05:24 PM
Last Post: BashBedlam
  Entry Widget issue PA3040 16 9,585 Jan-20-2021, 02:21 PM
Last Post: pitterbrayn
  [Tkinter] Get the last entry in my text widget Pedroski55 3 8,624 Jul-13-2020, 10:34 PM
Last Post: Pedroski55
  How to retreive the grid location of an Entry widget kenwatts275 7 6,735 Apr-24-2020, 11:39 PM
Last Post: Larz60+
  POPUP on widget Entry taratata2020 4 5,124 Mar-10-2020, 05:04 PM
Last Post: taratata2020
  Transfer Toplevel window entry to root window entry with TKinter HBH 0 5,225 Jan-23-2020, 09:00 PM
Last Post: HBH
  The coordinates of the Entry widget (canvas) when moving berckut72 8 7,622 Jan-07-2020, 09:26 AM
Last Post: berckut72

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020