Skip to content

Commit 5c6a53f

Browse files
committed
Hacking The Future
1 parent ec0af1b commit 5c6a53f

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

Desarrollo/.Lavadora.py.swp

-12 KB
Binary file not shown.
1.28 KB
Binary file not shown.
526 Bytes
Binary file not shown.

Desarrollo/07_Saludos.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
def presentarse(nombre):
2+
return f"Me llamo {nombre}"
3+
4+
def estudiemos_juntos(nombre):
5+
return f"¡Hey {nombre}, aprendamos Python!"
6+
7+
def consume_funciones(funcion_entrante):
8+
print(funcion_entrante("David"))
9+
10+
consume_funciones(presentarse)
11+
consume_funciones(estudiemos_juntos)

0 commit comments

Comments
 (0)