Hi Thanks a lot for trying to help me!
And I’ll implement those suggestions very soon ![]()
I tried to do from what I understood from your instruction, but I’m not sure if I did it right…
import tkinter as tk
ws=tk.Tk()
enteries=[]
for i in range(8):
e=tk.Entry(ws)
e.pack()
enteries.append(e.get())
But after I give some values, I’m not sure how to append that value in the list enteries.
Say In this, I want the details entered in those boxes to be updated into the list named enteries.
But rather, the value with which it is being created ‘’ is being appended.
Pleas can you help me with this… ![]()
