I'm making some program in tkinter and I got one problem.
In tkinter entry if I put 1 textvariable name in both of entry it will show instant on both of entries like this:
But I want to right entry immediately multiplied with 500. So If I put 2 on left it should show 1000 on right.
Label(frame2, foreground="#E3AAD5", text="500e").grid(row=0, column=0, sticky=W, padx=10) # Kreira label (opis kućice pokraj)
v_500 = IntVar()
_500 = Entry(frame2, textvariable=v_500)
_500.grid(row=0, column=1, sticky=W)
Entry(frame2, textvariable=v_500*500).grid(row=0, column=2, sticky=W)
But it doesn't work.

validatecommand