from tkinter import * root = Tk() l = Label(root, text='Hello World!!') #Creates the label with text hello world l.pack() #Makes it visible to us