Python tkinter obtient des étiquettes

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
Monster Coder