Skip to content

Commit dfaa8ef

Browse files
committed
ADding videos
1 parent 5419817 commit dfaa8ef

File tree

20 files changed

+45
-11
lines changed

20 files changed

+45
-11
lines changed

exercises/00-Welcome/README.es.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
---
2+
intro: "https://www.youtube.com/watch?v=SD9lqR67yMY"
3+
---
14
# Welcome to Python Functions!
25

36
¡¡Nos entusiasma mucho tenerte aquí!! 🎉 😂

exercises/00-Welcome/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
intro: "https://www.youtube.com/watch?v=awa_yfGgy9s"
2+
intro: "https://www.youtube.com/watch?v=06rxSj-9wM4"
33
---
44

55
# Welcome to Python Functions!

exercises/01-Hello-World/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=X1XZ4d-DE4Q"
3+
---
4+
15
# `01` Hello World
26

37
En Python, usamos **print** para hacer que el computador escriba cualquier cosa que queramos (el contenido de una variable, un string dado, etc.) en algo llamado "la consola".

exercises/01-Hello-World/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=voBO7a0KPtE"
2+
tutorial: "https://www.youtube.com/watch?v=_0zvPIS587w"
33
---
44

55
# `01` Hello World

exercises/02-What-is-a-function/README.es.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=4JzHH2qR8n0"
3+
---
14
# `02` What is a function?
25

36
Puedes ver una función como un **fragmento de código** que puedes usar varias veces.

exercises/02-What-is-a-function/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=tgTLyZ0cKj4"
2+
tutorial: "https://www.youtube.com/watch?v=U5GId8yOc-A"
33
---
44

55
# `02` What is a function?

exercises/03-Call-a-function/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=NU5iW_bWwmY"
2+
tutorial: "https://www.youtube.com/watch?v=F7_I8PD38ZQ"
33
---
44
# `03` Calling a Function
55

exercises/03-Call-a-function/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=NU5iW_bWwmY"
2+
tutorial: "https://www.youtube.com/watch?v=8tvkCp3EMiM"
33
---
44

55
# `03` Calling a Function

exercises/04-Defining-vs-Calling-a-function/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=ztyFrIY7U3o"
3+
---
4+
15
# `04` Defining vs Calling a Function
26

37
Las funciones solo existen si tú u otra persona las define... es la única forma en que el compilador/intérprete de lenguaje sabe que existen, por lo tanto, puede ejecutarlas cuando las llamas.

exercises/04-Defining-vs-Calling-a-function/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=fz4ttmwZWuc"
2+
tutorial: "https://www.youtube.com/watch?v=XbDE19gR678"
33
---
44

55
# `04` Defining vs Calling a Function

0 commit comments

Comments
 (0)