Valor do CDS
from tkinter import * root = Tk() root.geometry( "400x400" ) root.resizable( 0 , 0 ) root.config( bg = "#1a5a96" ) root.title( "Valor do CDS" ) titulo = Label( text = "Valor do CDS" , font =( "Arial" , "42" , "bold" ) , bg = "#1a5a96" , fg = "#12dbc7" ) titulo.place( relx = 0.05 , rely = 0.05 ) texto_sub1 = Label( text = "Prémio Periódico:" , font =( "Arial" , "15" , "bold" ) , bg = "#1a5a96" , fg = "#12dbc7" ) texto_sub1.place( relx = 0.1 , rely = 0.35 ) texto_sub2 = Label( text = "Recuperação:" , font =( "Arial" , "12" , "bold" ) , bg = "#1a5a96" , fg = "#12dbc7" ) texto_sub2.place( relx = 0.15 , rely = 0.55 ) prémio_periodico = DoubleVar() prémio_periodico_entrada = Entry( textvariable =prémio_periodico , ...