Tkinter (buton) fonksiyon çağırma

Sarıcı bir fonksiyon kullanabilirsiniz.

import tkinter as tk

root = tk.Tk()


def sarici(x):

    def artir():
        print(x + 5)

    return artir


button = tk.Button(root, text="artır", command=sarici(5))
button.pack()

root.mainloop()
1 Beğeni