Answers for "tkinter how to give a button a task"

1

add a button on tkinter

import tkinter
button1 = ttk.Button(self, text="anything", command=random command)
        button1.pack()
Posted by: Guest on March-23-2020

Code answers related to "tkinter how to give a button a task"

Python Answers by Framework

Browse Popular Code Answers by Language