tkinter beginner tutorial code example
Example 1: tkinter tutorial
from tkinter import *
app = Tk()
app.title("The title of the project")
app.geometry("400x400")
def c():
m = Label(app, text="Text")
m.pack()
l = Button(app, text="The text of the Butoon", command=c)
l.pack()
app.mainloop()
Example 2: basic tkinter gui
import tkinter as tk
root = tk.Tk()
root.title("my title")
root.geometry('200x150')
root.configure(background='black')
root.mainloop()
Example 3: tkinter tutorial
text_box.insert(tk.END, "Put me at the end!")