Continuing the exploration of using Tkinter with Python, this version adds catching 'Tab' or 'Return' keypress within the 'Entry' widget.
It won't repeat, if that is what you are expecting. The repeating is done at a low level, perhaps in the keyboard driver. The application receives keydown and keyup for each repetition. The only way ...