Curso de Programación en Python/Input-3

De WikiCabal
< Curso de Programación en Python
Revisión del 00:50 8 ene 2015 de Rrc (discusión | contribuciones) (Input-3.py)
(dif) ← Revisión anterior | Revisión actual (dif) | Revisión siguiente → (dif)
Ir a la navegación Ir a la búsqueda

Input-3.py

 1 #!/usr/bin/python3
 2 #-*-coding: utf-8 -*-
 3 
 4 from tkinter import *
 5 class App( Frame ):
 6     def __init__( self, master=None ):
 7         Frame.__init__( self, master )
 8         self.pack()
 9 
10 
11 # create the application
12 myapp = App()
13 
14 #
15 # here are method calls to the window manager class
16 #
17 myapp.master.title( "Mi Aplicación para hacer NADA" )
18 myapp.master.maxsize( 1000, 400 )
19 
20 # start the program
21 myapp.mainloop()

Resultado

Input-3.png