| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 
 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
 
from tkinter import *
#print(dir(tkinter))
# help(tkinter.Canvas)
 
 
tk=Tk() 
tk.title('Jeu du Baccalauréat')
 
 
rond=Canvas(tk, width=500, height=500) 
rond.create_oval(100,100,400,400,fill='yellow',outline='red', width= '5')  
rond.create_text(250,250, text="Jouons au Baccalauréat", font=('Times', 20))
 
 
 
b=Button(tk, text=' clique ici', height='5')
b.pack(pady= 20)
b.grid( column=1, row= 2)
 
 
rond.pack()
rond.mainloop()
 
b.keys() | 
Partager