From 1bf24dd8f4abe9416e5656bc5bf8d748d647d832 Mon Sep 17 00:00:00 2001 From: Jose Mora <109150320+josemoracard@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:27:19 +0100 Subject: [PATCH 1/6] Update README.md --- exercises/000-welcome/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/exercises/000-welcome/README.md b/exercises/000-welcome/README.md index 3e873388..f4ab73a6 100644 --- a/exercises/000-welcome/README.md +++ b/exercises/000-welcome/README.md @@ -2,14 +2,14 @@ We are very excited to have you here !! 馃帀 馃槀 -This is the last series of exercises of a list of Python interactive tutorials published by [@alesanchezr](https://twitter.com/alesanchezr) with [4GeeksAcademy](https://4geeksacademy.com). +This is the last series of exercises in a list of Python interactive tutorials published by [@alesanchezr](https://twitter.com/alesanchezr) with [4GeeksAcademy](https://4geeksacademy.com). -If you have not completed them and you are new to javascript, I strongly recomend you start with: +If you have not completed them, and you are new to Python, I strongly recommend you start with: -1. [Python for beginners](https://github.com/4GeeksAcademy/python-beginner-programming-exercises) +1. [Python for beginners](https://github.com/4GeeksAcademy/python-beginner-programming-exercises). -2. [Practice Looping Lists and Tuples](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises) +2. [Practice Functions](https://github.com/4GeeksAcademy/python-functions-programming-exercises). + +3. [Practice Loops and Lists](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises). -3. [Practice Functions](https://github.com/4GeeksAcademy/python-functions-programming-exercises) - -Click `Next 鈫抈 on the top right of this instructions when you are ready to start. \ No newline at end of file +Click `Next 鈫抈 on the top right of these instructions when you are ready to start. From 026c324369f0d3aa104411ed14f0fa8516b929fb Mon Sep 17 00:00:00 2001 From: Jose Mora <109150320+josemoracard@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:29:39 +0100 Subject: [PATCH 2/6] Update README.es.md --- exercises/000-welcome/README.es.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/exercises/000-welcome/README.es.md b/exercises/000-welcome/README.es.md index f4323175..2b4a9800 100644 --- a/exercises/000-welcome/README.es.md +++ b/exercises/000-welcome/README.es.md @@ -1,16 +1,15 @@ -# Bienvenid@ a Python! +# Welcome to Python! -隆隆Nos estusiasma mucho tenerte aqu铆!! 馃帀 馃槀 +隆隆Nos entusiasma mucho tenerte aqu铆!! 馃帀 馃槀 Este es el 煤ltimo de una serie de ejercicios publicados para practicar Python desde cero por [@alesanchezr](https://twitter.com/alesanchezr) y [4GeeksAcademy](https://4geeksacademy.com). -Si no haz completado los otros ejercicios te recomiendo que empieces por alli: +Si no has completado los otros tutoriales te recomiendo que empieces por all铆: -1. [Python for beginners](https://github.com/4GeeksAcademy/python-beginner-programming-exercises) +1. [Python para principiantes](https://github.com/4GeeksAcademy/python-beginner-programming-exercises). -2. [Practice Looping Lists and Tuples](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises) - -3. [Practice Functions](https://github.com/4GeeksAcademy/python-functions-programming-exercises) +2. [Practica Funciones](https://github.com/4GeeksAcademy/python-functions-programming-exercises). +3. [Practica Listas y Bucles](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises). Presiona `Next 鈫抈 en la esquina superior derecha cuando quieras empezar. From 0ad2fa35436337b0fd272e1f2448ea814e7f0942 Mon Sep 17 00:00:00 2001 From: Jose Mora <109150320+josemoracard@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:34:26 +0100 Subject: [PATCH 3/6] Update README.md --- exercises/001-hello_world/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/exercises/001-hello_world/README.md b/exercises/001-hello_world/README.md index 6617e61d..753d7426 100644 --- a/exercises/001-hello_world/README.md +++ b/exercises/001-hello_world/README.md @@ -2,15 +2,15 @@ In Python, we use `print` to make the computer write anything we want (the content of a variable, a given string, etc.) in something called "the console". -Every language has a console, as it was the only way to interact with the users at the beginning (before the Windows or MacOS arrived). +Every language has a console, as it was the only way to interact with the users at the beginning (before Windows, Linux or macOS arrived). -Today, printing in the console is used mostly as a monitoring tool, ideal to leave a trace of the content of variables during the program execution. +Today, printing in the console is mostly used as a monitoring and debugging tool, ideal for leaving a trace of the content of variables during the program's execution. ## 馃摑 Instructions: 1. Use the `print()` function to print `"Hello World"` on the console. Feel free to try other things as well. -## Example: +## 馃搸 Example: ```py print("How are you?") @@ -18,4 +18,4 @@ print("How are you?") ## 馃挕 Hint: -+ 5 minutes video about [the console](https://www.youtube.com/watch?v=1RlkftxAo-M) \ No newline at end of file ++ 2 minute video about [the console](https://www.youtube.com/watch?v=vROGBvX_MHQ&ab_channel=edX) From 35b9a8a5ff39c6d7eaf58651e1acbea1d18d9f60 Mon Sep 17 00:00:00 2001 From: Jose Mora <109150320+josemoracard@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:37:18 +0100 Subject: [PATCH 4/6] Update README.es.md --- exercises/001-hello_world/README.es.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/exercises/001-hello_world/README.es.md b/exercises/001-hello_world/README.es.md index ed5394e9..ca708fac 100644 --- a/exercises/001-hello_world/README.es.md +++ b/exercises/001-hello_world/README.es.md @@ -1,16 +1,16 @@ # `001` hello world -En Python, usamos `print` para hacer que el computador escriba cualquier cosa que queramos (el contenido de una variable, un texto dado, etc.) in algo llamado `la consola`. +En Python, usamos `print` para hacer que el computador escriba cualquier cosa que queramos (el contenido de una variable, una cadena de texto dada, etc.) en algo llamado "la consola". -Cada idioma tiene funciones para integrarse con la consola, ya que al principio era la 煤nica forma de interactuar con los usuarios (antes de que llegara Windows o MacOS o Linux). +Cada lenguaje tiene una consola, ya que al principio era la 煤nica forma de interactuar con los usuarios (antes de que llegaran Windows, Linux o macOS). -Hoy en d铆a, la impresi贸n en la consola se utiliza sobre todo como herramienta de monitoreo, ideal para dejar un rastro del contenido de las variables durante la ejecuci贸n del programa. +Hoy en d铆a, la impresi贸n en la consola se utiliza, sobre todo, como herramienta de monitoreo y depuraci贸n, ideal para dejar un rastro del contenido de las variables durante la ejecuci贸n del programa. ## 馃摑 Instrucciones: 1. Usa la funci贸n `print()` para escribir `"Hello World"` en la consola. Si茅ntete libre de intentar otras cosas tambi茅n. -## Ejemplo: +## 馃搸 Ejemplo: ```py print("How are you?") @@ -18,4 +18,4 @@ print("How are you?") ## 馃挕 Pista: -+ Video de 5 minutos sobre [la consola](https://www.youtube.com/watch?v=vROGBvX_MHQ) ++ Video de 2 minutos sobre [la consola](https://www.youtube.com/watch?v=vROGBvX_MHQ) From 868bcb850ae3b33cbfafa56acae2bd7c56966b20 Mon Sep 17 00:00:00 2001 From: Jose Mora <109150320+josemoracard@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:38:10 +0100 Subject: [PATCH 5/6] Update README.md --- exercises/001-hello_world/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/001-hello_world/README.md b/exercises/001-hello_world/README.md index 753d7426..c5a06561 100644 --- a/exercises/001-hello_world/README.md +++ b/exercises/001-hello_world/README.md @@ -18,4 +18,4 @@ print("How are you?") ## 馃挕 Hint: -+ 2 minute video about [the console](https://www.youtube.com/watch?v=vROGBvX_MHQ&ab_channel=edX) ++ 2 minute video about [the console](https://www.youtube.com/watch?v=vROGBvX_MHQ). From 9ebe49e6e46dd6318108ab061c8b140dd9fe6375 Mon Sep 17 00:00:00 2001 From: Jose Mora <109150320+josemoracard@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:38:13 +0100 Subject: [PATCH 6/6] Update README.es.md --- exercises/001-hello_world/README.es.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/001-hello_world/README.es.md b/exercises/001-hello_world/README.es.md index ca708fac..35a070cc 100644 --- a/exercises/001-hello_world/README.es.md +++ b/exercises/001-hello_world/README.es.md @@ -18,4 +18,4 @@ print("How are you?") ## 馃挕 Pista: -+ Video de 2 minutos sobre [la consola](https://www.youtube.com/watch?v=vROGBvX_MHQ) ++ Video de 2 minutos sobre [la consola](https://www.youtube.com/watch?v=vROGBvX_MHQ).