People, help me with this, I have two entry and I need when I type a word for example (Python) it changes from one entry to the other automatically
from tkinter import *
janela2.geometry('250x250+100+100')
lb2 = Label(janela2, text='coloque seu nome')
barrinha= Entry(janela2)
barrinha.place(x=80,y=80)
barrinha1= Entry(janela2)
barrinha1.place(x=80,y=120)
janela2.mainloop ()