When I run the code "15" is immediately printed to console. How can I get it to print after I press the button?
from tkinter import *
def mult(n):
print (n*3)
top = Tk()
B1 = Button(top, text = "Enter Number", command = mult(5))
B1.pack()
top.mainloop()