I'm trying to get a value from a function and i want to put the returned value to a text box on my GUI.
Label(master, text="Enter your message :").grid(column = 0, row = 0)
Label(master, text="Corrected message is :").grid(column = 0, row = 1)
e1 = Entry(master).grid(row=0, column=1)
e2 = Entry(master).grid(row=1, column=1)
In this i need the data that comes from the function to appear in the second text box