Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Upgrading Learnpack IDE and CLI and adding new videos#59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
alesanchezr merged 3 commits into4GeeksAcademy:masterfromCharlytoc:master
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion.devcontainer/devcontainer.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@
"extensions": ["learn-pack.learnpack-vscode"]
}
},
"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"
"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"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
3 changes: 3 additions & 0 deletionsexercises/00-Welcome/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
---
intro: "https://www.youtube.com/watch?v=SD9lqR67yMY"
---
# Welcome to Python Functions!

¡¡Nos entusiasma mucho tenerte aquí!! 🎉 😂
Expand Down
2 changes: 1 addition & 1 deletionexercises/00-Welcome/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
intro: "https://www.youtube.com/watch?v=awa_yfGgy9s"
intro: "https://www.youtube.com/watch?v=06rxSj-9wM4"
---

# Welcome to Python Functions!
Expand Down
4 changes: 4 additions & 0 deletionsexercises/01-Hello-World/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=X1XZ4d-DE4Q"
---

# `01` Hello World

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".
Expand Down
2 changes: 1 addition & 1 deletionexercises/01-Hello-World/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=voBO7a0KPtE"
tutorial: "https://www.youtube.com/watch?v=_0zvPIS587w"
---

# `01` Hello World
Expand Down
3 changes: 3 additions & 0 deletionsexercises/02-What-is-a-function/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
---
tutorial: "https://www.youtube.com/watch?v=4JzHH2qR8n0"
---
# `02` What is a function?

Puedes ver una función como un **fragmento de código** que puedes usar varias veces.
Expand Down
2 changes: 1 addition & 1 deletionexercises/02-What-is-a-function/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=tgTLyZ0cKj4"
tutorial: "https://www.youtube.com/watch?v=U5GId8yOc-A"
---

# `02` What is a function?
Expand Down
2 changes: 1 addition & 1 deletionexercises/03-Call-a-function/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=NU5iW_bWwmY"
tutorial: "https://www.youtube.com/watch?v=F7_I8PD38ZQ"
---
# `03` Calling a Function

Expand Down
2 changes: 1 addition & 1 deletionexercises/03-Call-a-function/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=NU5iW_bWwmY"
tutorial: "https://www.youtube.com/watch?v=8tvkCp3EMiM"
---

# `03` Calling a Function
Expand Down
4 changes: 4 additions & 0 deletionsexercises/04-Defining-vs-Calling-a-function/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=ztyFrIY7U3o"
---

# `04` Defining vs Calling a Function

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.
Expand Down
2 changes: 1 addition & 1 deletionexercises/04-Defining-vs-Calling-a-function/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=fz4ttmwZWuc"
tutorial: "https://www.youtube.com/watch?v=XbDE19gR678"
---

# `04` Defining vs Calling a Function
Expand Down
4 changes: 4 additions & 0 deletionsexercises/05-lambda-functions/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=UH__beyfTlo"
---

# `05` Lambda Functions in Python

Una **función lambda** es una función con solo una línea de código y sin nombre.
Expand Down
2 changes: 1 addition & 1 deletionexercises/05-lambda-functions/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=HACQ9uerCuE"
tutorial: "https://www.youtube.com/watch?v=vRusUCDa3-k"
---


Expand Down
4 changes: 4 additions & 0 deletionsexercises/06-lambda-function-two/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=F30Vkf69SHI"
---

# `06` Lambda Functions

### ☝ Recuerda:
Expand Down
2 changes: 1 addition & 1 deletionexercises/06-lambda-function-two/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=1HwmTkQPeMo"
tutorial: "https://www.youtube.com/watch?v=0KX8Bh7d_9E"
---

# `06` Lambda Functions
Expand Down
4 changes: 4 additions & 0 deletionsexercises/07-Function-that-returns/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=3V15moFzUjI"
---

# `07` Functions that return

Es una muy buena práctica que las funciones devuelvan algo, incluso si es `None`.
Expand Down
2 changes: 1 addition & 1 deletionexercises/07-Function-that-returns/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=-tqNmngh1PE"
tutorial: "https://www.youtube.com/watch?v=H6Zps4dPqzs"
---

# `07` Functions that return
Expand Down
4 changes: 4 additions & 0 deletionsexercises/08-Function-parameters/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=LuA-x5DYPr4"
---

# `08` Function parameters

Puedes especificar tantos parámetros como desees en una función.
Expand Down
2 changes: 1 addition & 1 deletionexercises/08-Function-parameters/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=uaiDxW4LJNA"
tutorial: "https://www.youtube.com/watch?v=BCMQF44H-BY"
---

# `08` Function parameters
Expand Down
4 changes: 4 additions & 0 deletionsexercises/09-Array-Methods/README.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=Ne8ZRZTSaQA"
---

# `09` List Methods

## 📝 Instrucciones:
Expand Down
2 changes: 1 addition & 1 deletionexercises/09-Array-Methods/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=jBXve_vh7dU"
tutorial: "https://www.youtube.com/watch?v=5Wk2a16nnUY"
---

# `09` List Methods
Expand Down
2 changes: 1 addition & 1 deletionlearn.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -19,7 +19,7 @@
"graded": true,

"editor": {
"version": "1.0.73"
"version": "3.1.9"
}

}

[8]ページ先頭

©2009-2025 Movatter.jp