Execução do Orçamento
from tkinter import * root = Tk() root.geometry( "400x400" ) root.resizable( 0 , 0 ) root.config( bg = "#103030" ) root.title( "Execução do Orçamento" ) titulo = Label( text = "Execução do Orçamento" , font =( "Arial" , "23" , "bold" ) , bg = "#103030" , fg = "#49e3e3" ) titulo.place( relx = 0.05 , rely = 0.05 ) texto_sub1 = Label( text = "Valor Orçamentado:" , font =( "Arial" , "15" , "bold" ) , bg = "#103030" , fg = "#49e3e3" ) texto_sub1.place( relx = 0.05 , rely = 0.3 ) texto_sub2 = Label( text = "Valor Executado:" , font =( "Arial" , "15" , "bold" ) , bg = "#103030" , fg = "#49e3e3" ) texto_sub2.place( relx = 0.1 , rely = 0.45 ) Valor_Orçamentado = DoubleVar() Valor_Orçamentado_entrada = Entry( textvariable =Valor_Orçament...