The idea is that the user type the number of rows and I create the entries according to this amount, this I was able to do, what I can not get is the value of these entry with get ().
y1=0
lista= []
while y1 < x1:
y1= y1+1
lista.append(y1)
for y1 in lista:
self.num= Label(self.root, text= y1,font= fonte, bg=cor).grid(row=(9+y1), column=0,sticky= NW)
self.cxx = Entry(self.root)
self.cxx["width"] = 4
self.cxx["font"] = fonte
self.cxx.grid(row=(9+y1), column=1)