this is how to make a label in python in 4 lines of code the code is :from tkinter import * #imports tkinter library
root = Tk() #defines the tkinter variable
L1 = Label(root, text = "hello world") #defines the label
L1.pack() #put the label on the screen