You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
253 B
20 lines
253 B
import tkinter as tk
|
|
|
|
|
|
fenetre = tk.Tk()
|
|
fenetre.title('lampe')
|
|
canva=tk.Canvas(fenetre, width=500, height=250, bg='black')
|
|
canva.grid(column=1, columnspan=3)
|
|
rectangle =canva.create_rectangle(200,200,250,250, fill='white')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fenetre.mainloop()
|