Fill in the Blanks Formulario Tkinter en Python Bach.Online version Complete el formulario de registro. by Isaías A. Cuá Dubón 1 * raiz = ( ) raiz . ( " 300x200 " ) raiz . ( " Formulario Simple de : " ) = Frame ( ) miFrame . ( ) bienvenido = ( miFrame , text = " Realizado por : " ) . grid ( row = 0 , column = 0 ) bienvenido . ( = ( 'Arial' , 16 ) ) # - - - - - Seccion de Nombre - - - - - = Label ( miFrame , text = " Cuál es tu nombre : " ) . grid ( row = 1 , column = 0 ) . config ( padx = 10 , pady = 10 ) cuadro_nombre = ( miFrame ) . grid ( row = 1 , column = 1 ) # - - - - - Seccion de Apellido - - - - - apellido_label = Label ( miFrame , text = " Cuál es tu apellido : " ) . grid ( row = 2 , column = 0 ) . config ( padx = 10 , pady = 10 ) cuadro_Apellido = Entry ( miFrame ) . grid ( row = 2 , column = 1 ) # - - - - - de Dirección - - - - - carrera = Label ( , text = " Carrera : " ) carrera . ( row = 3 , column = 0 ) carrera . config ( padx = 10 , pady = 10 ) = Entry ( miFrame ) . grid ( row = 3 , column = 1 ) raiz . ( )