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

+1-1
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/[email protected].20 -g && learnpack plugins:install @learnpack/[email protected]"
24+
"onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/[email protected].35 -g && learnpack plugins:install @learnpack/[email protected]"
2525

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

exercises/00-Welcome/README.es.md

+3
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

+1-1
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

+4
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

+1-1
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

+3
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

+1-1
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

+1-1
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

+1-1
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

+4
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

+1-1
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

exercises/05-lambda-functions/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=UH__beyfTlo"
3+
---
4+
15
# `05` Lambda Functions in Python
26

37
Una **función lambda** es una función con solo una línea de código y sin nombre.

exercises/05-lambda-functions/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=HACQ9uerCuE"
2+
tutorial: "https://www.youtube.com/watch?v=vRusUCDa3-k"
33
---
44

55

exercises/06-lambda-function-two/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=F30Vkf69SHI"
3+
---
4+
15
# `06` Lambda Functions
26

37
### ☝ Recuerda:

exercises/06-lambda-function-two/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=1HwmTkQPeMo"
2+
tutorial: "https://www.youtube.com/watch?v=0KX8Bh7d_9E"
33
---
44

55
# `06` Lambda Functions

exercises/07-Function-that-returns/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=3V15moFzUjI"
3+
---
4+
15
# `07` Functions that return
26

37
Es una muy buena práctica que las funciones devuelvan algo, incluso si es `None`.

exercises/07-Function-that-returns/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=-tqNmngh1PE"
2+
tutorial: "https://www.youtube.com/watch?v=H6Zps4dPqzs"
33
---
44

55
# `07` Functions that return

exercises/08-Function-parameters/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=LuA-x5DYPr4"
3+
---
4+
15
# `08` Function parameters
26

37
Puedes especificar tantos parámetros como desees en una función.

exercises/08-Function-parameters/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=uaiDxW4LJNA"
2+
tutorial: "https://www.youtube.com/watch?v=BCMQF44H-BY"
33
---
44

55
# `08` Function parameters

exercises/09-Array-Methods/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=Ne8ZRZTSaQA"
3+
---
4+
15
# `09` List Methods
26

37
## 📝 Instrucciones:

exercises/09-Array-Methods/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: "https://www.youtube.com/watch?v=jBXve_vh7dU"
2+
tutorial: "https://www.youtube.com/watch?v=5Wk2a16nnUY"
33
---
44

55
# `09` List Methods

learn.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"graded": true,
2020

2121
"editor": {
22-
"version": "1.0.73"
22+
"version": "3.1.9"
2323
}
2424

2525
}

0 commit comments

Comments
 (0)