10 lines
142 B
Python
10 lines
142 B
Python
# coding: utf-8
|
|
|
|
from tkinter import *
|
|
|
|
fenetre = Tk()
|
|
|
|
label = Label(fenetre, text="Hello World")
|
|
label.pack()
|
|
|
|
fenetre.mainloop() |