This commit is contained in:
Ichbinus
2024-05-03 14:39:15 +02:00
committed by GitHub
parent c1a8b194b9
commit a22d8a8365

View File

@@ -1 +1,10 @@
print("hello, world")
# coding: utf-8
from tkinter import *
fenetre = Tk()
label = Label(fenetre, text="Hello World")
label.pack()
fenetre.mainloop()