Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python project example

from tkinter import*
root = Tk()

root.title("project title")
root.geometry("500x500")
Label(root, text="label").place(x=20, y=20)
Button(root, text="button").place(x=30, y=20)
Source by itswachira.hashnode.dev #
 
PREVIOUS NEXT
Tagged: #python #project
ADD COMMENT
Topic
Name
6+3 =