I'm doing a program that basically by entering a series of numbers, you automatically add a character. My question is if there is any type of pointer in the Entry()
of Python since when entering the character externally, the pointer remains in the same position of the last character entered through the keyboard.
The example:
In the Entry()
I place 22
and I want you to automatically enter the /
character.
In doing so, the pointer stays in front of 22 instead of in front of /
I have tried to give the "focus" to another widget and give the "focus" back to the Entry ()
Is there a method that allows you to handle the pointer within Entry()
?