Valor de Mercado da Empresa
from tkinter import * root = Tk() root.geometry( "500x400" ) root.resizable( 0 , 0 ) root.config( bg = "#103030" ) root.title( "Valor de Mercado da Empresa " ) titulo = Label( text = "Valor de Mercado da Empresa" , font =( "Arial" , "25" , "bold" ) , bg = "#103030" , fg = "#49e3e3" ) titulo.place( relx = 0.05 , rely = 0.05 ) texto_sub1 = Label( text = "Número de Acções:" , font =( "Arial" , "18" , "bold" ) , bg = "#103030" , fg = "#49e3e3" ) texto_sub1.place( relx = 0.05 , rely = 0.25 ) texto_sub2 = Label( text = "Preço da Acção:" , font =( "Arial" , "18" , "bold" ) , bg = "#103030" , fg = "#49e3e3" ) texto_sub2.place( relx = 0.08 , rely = 0.45 ) Número_Acções = StringVar() Número_Acções_entrada = Entry( textvariable =Número_Ac...