Browse Source

début cercle

master
RAVET Célya 1 month ago
parent
commit
9f37b66e97
  1. 6
      projet_tkinter.py

6
projet_tkinter.py

@ -3,10 +3,10 @@ import tkinter as tk
fenetre = tk.Tk()
fenetre.title('lampe')
canva=tk.Canvas(fenetre, width=500, height=250, bg='black')
canva=tk.Canvas(fenetre, width=500, height=500, bg='black')
canva.grid(column=1, columnspan=3)
rectangle =canva.create_rectangle(200,200,250,250, fill='white')
rectangle =canva.create_rectangle(200,300,300,400, fill='white')
rond = canva.create_oval(210,120,100,250,outline='white')

Loading…
Cancel
Save