from tkinter import * root = Tk()
root.title("Bandeira da Polónia")
root.resizable(False,False)
frame_cima = Frame( bg="white", height=70, width=400)
frame_baixo = Frame( bg='red', height=70, width=400)
frame_cima.pack()
frame_baixo.pack()
mainloop()