+ 1
How to make a button in python?
How
2 Answers
+ 7
You probably need to work with graphics libraries like tkinter for that one.
+ 7
from tkinter import *
from tkinter import ttk
root = Tk()
button = ttk.Button(root, text = "click me!")
button.pack()