You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/01-hello-world/README.es.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,10 @@
1
-
# `01` Hello world
1
+
# `01` Hello World
2
2
3
-
En Python, usamos `print` para hacer que el computador escriba cualquier cosa que queramos
4
-
(el contenido de una variable, una cadena de texto dada, etc.)
5
-
en 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".
6
4
7
-
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).
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).
8
6
9
-
Hoy en día, la impresión en la consola se utiliza, sobre todo, como herramienta de monitorización y depuración, 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.
10
8
11
9
Este es un ejemplo de cómo usarla:
12
10
@@ -16,7 +14,7 @@ print("How are you?")
16
14
17
15
## 📝 Instrucciones:
18
16
19
-
1. Usa la función `print()` para escribir "Hello World" en la consola.
17
+
1. Usa la función `print()` para escribir `Hello World` en la consola.
Copy file name to clipboardExpand all lines: exercises/01-hello-world/README.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,10 @@
1
1
# `01` Hello World
2
2
3
-
In Python, we use `print` to make the computer write anything we want (the content of a variable, a given string, etc.)
4
-
in something called `the console`.
3
+
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".
5
4
6
-
Every language has a console, as it was the only way to interact with the users at the beginning
7
-
(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).
8
6
9
-
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.
0 commit comments