python create gui code example

Example 1: create window with python

# basic setup
from tkinter import *

app = Tk() # the application itself
app.title("Test") # title of window

label = Label(app, text="Testing testing one, two, three") # creates label
label.pack() # adds the label to the window

app.mainloop() # this must go at the end of your window code

Example 2: python gui

import tkinter as tk
#Importing the main module
window = tk.Tk()
window.mainloop()

Example 3: how to create tkinter window

import tkinter
master = tkinter.Tk()
master.mainloop()