first of all I'm new to Python and coding overall. I wanna ask, I'm using IDLE and Tkinter together. I'm making a simple calculator.
def getInput():
i1 = Input1_Box.get()
i2 = Input2_Box.get()
i3 = Input3_Box.get()
calculate = float(i1) * float(i3) - float(i2) * float(i3)
print(calculate)
Here I use define tag getInput to fetch data from Entry widget and use the string(I think so), calculate to put a simple equation to calculate all the data fetch.
But I don't know how to display the result of "calculate" into and Entry widget or display as a text.