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.
28 lines
316 B
28 lines
316 B
#projet 7 interface graphique
|
|
import tkinter as tk
|
|
#Creation de la fenetre
|
|
fenetre =tk.Tk()
|
|
fenetre.title("Calcul d'IP")
|
|
canvas=tk.Canvas(width=500,height=500,bg="ivory")
|
|
canvas.grid
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fenetre.mainloop()
|