Skip to content

Commit 2d76d0e

Browse files
authored
Merge pull request #59 from Charlytoc/master
Upgrading Learnpack IDE and CLI and adding new videos
2 parents 704c159 + dfaa8ef commit 2d76d0e

File tree

22 files changed

+47
-13
lines changed

22 files changed

+47
-13
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"extensions": ["learn-pack.learnpack-vscode"]
2222
}
2323
},
24-
"onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/learnpack@2.1.20 -g && learnpack plugins:install @learnpack/python@1.0.0"
24+
"onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/learnpack@2.1.35 -g && learnpack plugins:install @learnpack/python@1.0.0"
2525

2626
// Features to add to the dev container. More info: https://containers.dev/features.
2727
// "features": {},

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.

0 commit comments

Comments
 (0)