|
|
@ -3,11 +3,12 @@ import tkinter as tk |
|
|
def allumer (): |
|
|
def allumer (): |
|
|
canva.itemconfigure(rond, fill='yellow') |
|
|
canva.itemconfigure(rond, fill='yellow') |
|
|
canva.itemconfigure(rectangle,fill='black') |
|
|
canva.itemconfigure(rectangle,fill='black') |
|
|
|
|
|
canva['bg']='white' |
|
|
|
|
|
|
|
|
def eteindre (): |
|
|
def eteindre (): |
|
|
canva.itemconfigure(rond,fill='black',outline='white') |
|
|
canva.itemconfigure(rond,fill='black',outline='white') |
|
|
canva.itemconfigure(rectangle,fill='white') |
|
|
canva.itemconfigure(rectangle,fill='white') |
|
|
|
|
|
canva['bg']='black' |
|
|
fenetre = tk.Tk() |
|
|
fenetre = tk.Tk() |
|
|
fenetre.title('lampe') |
|
|
fenetre.title('lampe') |
|
|
canva=tk.Canvas(fenetre, width=500, height=500, bg='black') |
|
|
canva=tk.Canvas(fenetre, width=500, height=500, bg='black') |
|
|
|