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
my_label = Label(screen_name, text="")
my_label.place(x="", y="")
from tkinter import *
root = Tk()
root.title("label")
label = Label(root, text="Your Text")
label.pack() #