Sorry for these easy question, i'm a beginner. I'm trying to get information (name,salary and age for employees) and display it in a list with header (Name,Salary,Age) in window. But I don't know how get information and manage it in a list.
from tkinter import *
from tkinter.ttk import *
addemploye = Tk()
addemploye.geometry("400x400")
Label(addemploye, text="Name").pack()
e1 = Entry(addemploye, width=20).pack()
Label(addemploye, text="Salary").pack()
e2 = Entry(addemploye, width=20).pack()
Label(addemploye, text="Age").pack()
e3 = Entry(addemploye, width=20).pack()
B2 = Button(addemploye , text = "Save", command = getting)
B2.pack()
B3 = Button(addemploye, text="Close", command=addemploye.destroy)
B3.pack()
window = Tk()
window.title("Table with add, edit and delete")
window.geometry('400x400')
window.title("Table with add employee")
window.geometry('500x500')
btn = Button(window, text="+ add new employee",command = addemployee)
btn.place(relx=0.95, rely=0.9, anchor=SE)
window.mainloop()