Files
Formation-python/hello-world/hello,world.py
Ichbinus a22d8a8365 commit
2024-05-03 14:39:15 +02:00

10 lines
142 B
Python

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