In the example below, I want to enter the data in each of the cells and when pressing the enter / enter key, accept the data and look for the next one.
I would also add if you can put an entry order in the manner of VisualBasic TabIndex.
from Tkinter import *
root = Tk()
top = Frame(root)
top.pack()
label = Label(top, text='Entrada de Datos continuados con Enter y que salte a la otra casilla')
entry = Entry(top)
entry2 = Entry(top)
entry3 = Entry(top)
label.pack()
entry.pack()
entry2.pack()
entry3.pack()
root.mainloop()