Objective: click on plus button and a plus sign appears in the entry box I have a very simple code here:
basic=tk.Tk()
basic_label=tk.Label('Welcome to Basic Math section. \n \n Note: Please enter white spaces between objects, \n e.g. 5 + 6 \n NOT 5+6')
entry=tk.Entry()
userInput=str(entry.get())
input1, op, input2=UserInput.split(' ')
#casting inputs
input1=int(input1)
input2=int(input2)
plus=tk.Button(text='+', command=??)
What do I put in the command?