Skip to content

Commit 8536057

Browse files
authored
Merge pull request #52 from josemoracard/jose2-000-welcome
exercises 000-welcome and 001-hello_world
2 parents 1d881ec + 9ebe49e commit 8536057

File tree

4 files changed

+22
-23
lines changed

4 files changed

+22
-23
lines changed

exercises/000-welcome/README.es.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
# Bienvenid@ a Python!
1+
# Welcome to Python!
22

3-
¡¡Nos estusiasma mucho tenerte aquí!! 🎉 😂
3+
¡¡Nos entusiasma mucho tenerte aquí!! 🎉 😂
44

55
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).
66

7-
Si no haz completado los otros ejercicios te recomiendo que empieces por alli:
7+
Si no has completado los otros tutoriales te recomiendo que empieces por allí:
88

9-
1. [Python for beginners](https://github.com/4GeeksAcademy/python-beginner-programming-exercises)
9+
1. [Python para principiantes](https://github.com/4GeeksAcademy/python-beginner-programming-exercises).
1010

11-
2. [Practice Looping Lists and Tuples](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises)
12-
13-
3. [Practice Functions](https://github.com/4GeeksAcademy/python-functions-programming-exercises)
11+
2. [Practica Funciones](https://github.com/4GeeksAcademy/python-functions-programming-exercises).
1412

13+
3. [Practica Listas y Bucles](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises).
1514

1615
Presiona `Next →` en la esquina superior derecha cuando quieras empezar.

exercises/000-welcome/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
We are very excited to have you here !! 🎉 😂
44

5-
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).
5+
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).
66

7-
If you have not completed them and you are new to javascript, I strongly recomend you start with:
7+
If you have not completed them, and you are new to Python, I strongly recommend you start with:
88

9-
1. [Python for beginners](https://github.com/4GeeksAcademy/python-beginner-programming-exercises)
9+
1. [Python for beginners](https://github.com/4GeeksAcademy/python-beginner-programming-exercises).
1010

11-
2. [Practice Looping Lists and Tuples](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises)
11+
2. [Practice Functions](https://github.com/4GeeksAcademy/python-functions-programming-exercises).
12+
13+
3. [Practice Loops and Lists](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises).
1214

13-
3. [Practice Functions](https://github.com/4GeeksAcademy/python-functions-programming-exercises)
14-
15-
Click `Next →` on the top right of this instructions when you are ready to start.
15+
Click `Next →` on the top right of these instructions when you are ready to start.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# `001` hello world
22

3-
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`.
3+
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".
44

5-
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).
5+
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).
66

7-
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.
7+
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.
88

99
## 📝 Instrucciones:
1010

1111
1. Usa la función `print()` para escribir `"Hello World"` en la consola. Siéntete libre de intentar otras cosas también.
1212

13-
## Ejemplo:
13+
## 📎 Ejemplo:
1414

1515
```py
1616
print("How are you?")
1717
```
1818

1919
## 💡 Pista:
2020

21-
+ Video de 5 minutos sobre [la consola](https://www.youtube.com/watch?v=vROGBvX_MHQ)
21+
+ Video de 2 minutos sobre [la consola](https://www.youtube.com/watch?v=vROGBvX_MHQ).

exercises/001-hello_world/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
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".
44

5-
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).
5+
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).
66

7-
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.
7+
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.
88

99
## 📝 Instructions:
1010

1111
1. Use the `print()` function to print `"Hello World"` on the console. Feel free to try other things as well.
1212

13-
## Example:
13+
## 📎 Example:
1414

1515
```py
1616
print("How are you?")
1717
```
1818

1919
## 💡 Hint:
2020

21-
+ 5 minutes video about [the console](https://www.youtube.com/watch?v=1RlkftxAo-M)
21+
+ 2 minute video about [the console](https://www.youtube.com/watch?v=vROGBvX_MHQ).

0 commit comments

Comments
 (0)