from tkinter import * # Importing the tkinter module
root = Tk() # Creating a window
label = Label(root, text="Your Text") # Creating a label
label.pack() # Putting the label on the window
label.mainloop() # Opening the window
there was 2 "=" here V you only need one
example3 = Entry(root, width=10, font="Calibri 10")
example4 = Label(root, width=10, font="Calibri 10")
import tkinter as tk
window = tk.Tk()
firstLabel=tk.Label(window) #creates label and tells program where to load it
firstLabel.config(text="Label Statement: ") #alter the label to include text
firstLabel.pack() #loads the label to make it visible
window.mainloop()