Calcular taxa por 1 milhão habitantes
from tkinter import * root = Tk() root.geometry( "500x400" ) root.resizable( 0 , 0 ) root.config( bg = "#1b5c85" ) root.title( "Calcular taxa por 1 milhão habitantes" ) titulo = Label( text = "Calcular taxa por 1 milhão habitantes" , font =( "Arial" , "18" , "bold" ) , bg = "#1b5c85" , fg = "#91c5e6" ) titulo.place( relx = 0.08 , rely = 0.05 ) texto_sub1 = Label( text = "Número de ocorrências" , font =( "Arial" , "14" , "bold" ) , bg = "#1b5c85" , fg = "#91c5e6" ) texto_sub1.place( relx = 0.09 , rely = 0.25 ) texto_sub2 = Label( text = "Número total de Habitantes" , font =( "Arial" , "14" , "bold" ) , bg = "#1b5c85" , fg = "#91c5e6" ) texto_sub2.place( relx = 0.05 , rely = 0.4 ) Número_ocorrências = IntVar() Número_corrência...