Skip to content

Instantly share code, notes, and snippets.

@nicanor-romerovenier
Last active August 20, 2016 12:06
Show Gist options
  • Save nicanor-romerovenier/1215d08e395271959e093c7ff4612db5 to your computer and use it in GitHub Desktop.
Save nicanor-romerovenier/1215d08e395271959e093c7ff4612db5 to your computer and use it in GitHub Desktop.
Programar Fácil - Tutorial de Python # 3
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = "Nicanor Romero Venier"
__copyright__ = "Copyright 2016, Programar Fácil"
import tkinter
mi_ventana_sin_valor = tkinter.Tk()
mi_ventana_sin_valor.geometry("640x480")
mi_ventana_sin_valor.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment