diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3d337c79..a23de84f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -22,7 +22,7 @@ "extensions": ["learn-pack.learnpack-vscode"] } }, - "onCreateCommand": "sudo apt-get update -y && sudo apt-get install xdg-utils -y && pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/learnpack@4.0.10 -g && learnpack plugins:install @learnpack/python@1.0.3" + "onCreateCommand": "sudo apt-get update -y && sudo apt-get install xdg-utils -y && pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/learnpack@5.0.19 -g && learnpack plugins:install @learnpack/python@1.0.6" // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, diff --git a/.github/workflows/learnpack-audit.yml b/.github/workflows/learnpack-audit.yml index 52644d89..95814c2a 100644 --- a/.github/workflows/learnpack-audit.yml +++ b/.github/workflows/learnpack-audit.yml @@ -5,9 +5,9 @@ name: Learnpack audit on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: build: @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [14.x] + node-version: [20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/exercises/00-Welcome/README.es.md b/exercises/00-Welcome/README.es.md index 3a0f5d91..5d1bf37a 100644 --- a/exercises/00-Welcome/README.es.md +++ b/exercises/00-Welcome/README.es.md @@ -2,7 +2,7 @@ intro: "https://www.youtube.com/watch?v=IXNSwnN-YqM" --- -# Welcome to the Python Beginner Course! +# Bienvenid@ al curso de Python para principiantes! ¡Estamos muy entusiasmados por tenerte aquí! 🎉 😂 diff --git a/exercises/02-Declare-Variables/README.es.md b/exercises/02-Declare-Variables/README.es.md index d6d228ac..5db277e6 100644 --- a/exercises/02-Declare-Variables/README.es.md +++ b/exercises/02-Declare-Variables/README.es.md @@ -14,12 +14,12 @@ En este ejemplo, `name` es la variable, actuando como una caja para almacenar el ## 📝 Instrucciones: -1. Declara una variable con el valor `"Yellow"` y luego imprímelo en la consola. +1. Declara una variable llamada `name` con el valor `"Yellow"` y luego imprímelo en la consola. 2. Luego, imprime su valor en la consola usando `print(name)`. ## 💡 Pistas: -+ Puedes darle el nombre que quieras a la variable, pero su valor tiene que ser el texto "Yellow". ++ El nombre de la variable debe ser `name` para pasar los tests y su valor tiene que ser el texto "Yellow". + Si necesitas más explicación sobre qué son los **strings** y cómo funcionan en Python, puedes ver este clip: https://www.youtube.com/watch?v=yT0jixU3M2c&ab_channel=ProgramaResuelto (`ctrl + click` en el enlace para abrir el video) diff --git a/exercises/02-Declare-Variables/README.md b/exercises/02-Declare-Variables/README.md index 55a5d4fb..53bd3c51 100644 --- a/exercises/02-Declare-Variables/README.md +++ b/exercises/02-Declare-Variables/README.md @@ -14,12 +14,12 @@ In this example, `name` is the variable, acting like a box to store the value `" ## 📝 Instructions: -1. Declare a new variable with the string value `"Yellow"` and print the value to the console. +1. Declare a new variable named `name` with the string value `"Yellow"` and print the value to the console. 2. Then, print its value on the console using `print(name)`. ## 💡 Hints: -+ The name of the variable can be whatever you want, but the value inside has to be the string "Yellow". ++ The variable's name must be `name` to pass the tests, and the value inside has to be the string "Yellow". + If you need further explanation on what **strings** are and how they work in Python, you can watch this clip: https://youtube.com/clip/UgkxyQ_JLmgSUL4l25c8Ly7cCRvk1Gm-EchU (`ctrl + click` on the link to open the video) diff --git a/learn.json b/learn.json index 04ab4536..0d3eb8f8 100644 --- a/learn.json +++ b/learn.json @@ -9,8 +9,8 @@ "repository": "https://github.com/4GeeksAcademy/python-beginner-programming-exercises", "preview": "https://github.com/4GeeksAcademy/python-beginner-programming-exercises/blob/master/.learn/assets/preview.png?raw=true", "description": { - "us": "Python Exercises for beginners, from Hello World to variables, loops and a little bit of functions.", - "es": "Ejercicios de Python para principiantos, desde Hello World hasta variables, ciclos y un poco de funciones." + "us": "Python exercises for beginners, starting from the basics like `Hello World` to more advanced concepts like variables, loops, functions, and data structures. These hands-on challenges guide you step by step through Python programming, offering interactive and auto-graded lessons to build a solid foundation.", + "es": "Ejercicios de Python para principiantes, comenzando desde lo básico como `Hola Mundo` hasta conceptos más avanzados como variables, bucles, funciones y estructuras de datos. Estos desafíos prácticos te guían paso a paso en la programación con Python, ofreciendo lecciones interactivas y autoevaluadas para construir una base sólida." }, "duration": 10, "difficulty": "easy", @@ -18,13 +18,12 @@ "projectType": "tutorial", "bugsLink": "https://github.com/learnpack/learnpack/issues/new", "graded": true, -"language": "python3", - +"technologies": ["strings", "python-functions", "conditionals", "variables", "condicionales", "funciones-de-python"], "editor": { - "version": "4.0" + "version": "5.0" }, "telemetry": { - "batch": "https://breathecode.herokuapp.com/v1/assignment/me/telemetry" + "batch": "https://breathecode.herokuapp.com/v1/assignment/me/telemetry?asset_id=145" }, "video": { "intro": {