import tkinter okno = tkinter.Canvas(width=640,height=480) okno.pack() okno.create_rectangle(50,50,200,150,outline="red",fill="red") okno.create_rectangle(50,90,200,110,outline="white",fill="white") okno.create_rectangle(90,50,110,150,outline="white",fill="white") okno.create_rectangle(50,95,200,105,outline="blue",fill="blue") okno.create_rectangle(95,50,105,150,outline="blue",fill="blue") okno.create_text(70,160,text="Norsko") okno.update()