1 changed files with 9 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||
|
from tkinter import * |
||||
|
|
||||
|
fenetre = Tk() |
||||
|
|
||||
|
label = Label(fenetre, text = "Hello world") |
||||
|
label.pack() |
||||
|
|
||||
|
bouton = Button(fenetre, |
||||
|
fenetre.mainloop() |
Loading…
Reference in new issue