Skip to content

Commit 6280856

Browse files
committed
007-hours_and_minutes
2 parents 06d60b6 + fde02db commit 6280856

File tree

66 files changed

+401
-419
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+401
-419
lines changed

exercises/000-welcome/README.es.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Bienvenid@ a Python!
2+
3+
¡¡Nos estusiasma mucho tenerte aquí!! 🎉 😂
4+
5+
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).
6+
7+
Si no haz completado los otros ejercicios te recomiendo que empieces por alli:
8+
9+
1. [Python for beginners](https://github.com/4GeeksAcademy/python-beginner-programming-exercises)
10+
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)
14+
15+
16+
Presiona `Next →` en la esquina superior derecha cuando quieras empezar.

exercises/000-welcome/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Welcome to Python!
2+
3+
We are very excited to have you here !! 🎉 😂
4+
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).
6+
7+
If you have not completed them and you are new to javascript, I strongly recomend you start with:
8+
9+
1. [Python for beginners](https://github.com/4GeeksAcademy/python-beginner-programming-exercises)
10+
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)
14+
15+
Click `Next →` on the top right of this instructions when you are ready to start.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# `02` Hola, Mundo
1+
# `001` hello world
22

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

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

7-
Hoy en día, la impresión en la consola se utiliza sobre todo como herramienta de monitorizació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, ideal para dejar un rastro del contenido de las variables durante la ejecución del programa.
8+
9+
## Ejemplo:
810

9-
Este es un ejemplo de cómo usarlo:
1011
```py
1112
print("How are you?")
1213
```
1314

1415
## 📝 Instrucciones:
1516

16-
1. Usa la función `print()` para escribir "Hello World" en la consola. Siéntete libre de intentar otras cosas también.
17+
1. Usa la función `print()` para escribir `"Hello World"` en la consola. Siéntete libre de intentar otras cosas también.
1718

1819
## 💡 Pista:
1920

20-
Video de 5 minutos sobre la consola:
21-
https://www.youtube.com/watch?v=vROGBvX_MHQ
21+
+ Video de 5 minutos sobre [la consola](https://www.youtube.com/watch?v=vROGBvX_MHQ)
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
# `02` Hello World
1+
# `001` hello world
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

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

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

9-
This is an example of how to use it:
9+
## Example:
10+
1011
```py
1112
print("How are you?")
1213
```
@@ -17,5 +18,4 @@ print("How are you?")
1718

1819
## 💡 Hint:
1920

20-
5 minutes video about the console:
21-
https://www.youtube.com/watch?v=1RlkftxAo-M
21+
+ 5 minutes video about [the console](https://www.youtube.com/watch?v=1RlkftxAo-M)
File renamed without changes.
File renamed without changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# `002` sum of three numbers
2+
3+
## 📝 Instrucciones:
4+
5+
1. Teniendo tres números de entrada, imprime su suma. Cada número va en una línea aparte.
6+
7+
## Ejemplo de entrada:
8+
9+
+ 2
10+
+ 3
11+
+ 6
12+
13+
## Ejemplo de salida:
14+
15+
+ 11
16+
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# `03` Sum of three numbers
1+
# `002` sum of three numbers
22

33
## 📝 Instructions:
44

55
1. Taking 3 numbers from the input, print their sum. Every number is given on a separate line.
66

7-
### Example input:
7+
## Example input:
88

9-
- 2
10-
- 3
11-
- 6
9+
+ 2
10+
+ 3
11+
+ 6
1212

13-
### Example output:
13+
## Example output:
1414

15-
- 11
15+
+ 11
1616

0 commit comments

Comments
 (0)