Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a button in python

from tkinter import *
top = Tk()
top.geometry("200x100")
b = Button(top,text = "Simple")
b.pack()
top.mainaloop()
Source by www.python-lernen.de #
 
PREVIOUS NEXT
Tagged: #button #python
ADD COMMENT
Topic
Name
3+7 =