Skip to content

Commit

Permalink
Practicas
Browse files Browse the repository at this point in the history
Practica tkinter
  • Loading branch information
babuenop committed Jun 4, 2018
1 parent 9b81308 commit 8f5b260
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Graficos/Pantalla.pyw
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from tkinter import*
raiz=Tk()
raiz.title("Menu")
raiz.iconbitmap("icono.ico")
raiz.geometry("600x400")
raiz.mainloop()

Binary file added Graficos/The Mills - Cuando Estés Afuera.mp4
Binary file not shown.
Binary file added Graficos/icono.ico
Binary file not shown.
1 change: 1 addition & 0 deletions condiciones.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
def saludo
5 changes: 5 additions & 0 deletions condiciones.py3
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
numero = int(input("Escriba un número: "))
if not numero % 2:
print(f"{numero} es par")
else:
print(f"{numero} es impar")

0 comments on commit 8f5b260

Please sign in to comment.