Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit ddeb5e5

Browse files
Merge pull request #6 from marcogonzalo/master
Translated until exercise 20 only because the rest haven't been formatted
2 parents a7deaf0 + 255db14 commit ddeb5e5

File tree

43 files changed

+428
-23
lines changed

Some content is hidden

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

43 files changed

+428
-23
lines changed

‎.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
!.gitpod.Dockerfile
77
!bc.json
88
!README.md
9+
!README.*.md
910

1011
!/exercises
1112
!/exercises/*

‎README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
7070

7171
1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribution: (coder) :computer: (idea) 🤔, (build-tests) :warning:, (pull-request-review) :eyes: (build-tutorial) :white_check_mark: (documentation) :book:
7272
2. [Paolo (plucodev)](https://github.com/plucodev), contribution: (bug reports) :bug:, contribution: (coder), (translation) :earth_americas:
73+
3. [Marco Gómez (marcogonzalo)](https://github.com/marcogonzalo), contribution: (bug reports) :bug:, (translation) :earth_africa:
7374

7475
This project follows the
7576
[all-contributors](https://github.com/kentcdodds/all-contributors)

‎exercises/01-welcome/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Bienvenid@ a Python!
2+
3+
¡¡Nos estusiasma mucho tenerte aquí!! 🎉 😂
4+
Presiona `Next` `Next →` de arriba a la derecha cuando quieras empezar.

‎exercises/01-welcome/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# Welcome to Python!
1+
# Welcome to Python!
2+
3+
We are very excited to have you here !! 🎉 😂
4+
Click `next` on the top right of this instructions when you are ready to start.

‎exercises/02-hello-world/README.es.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# `02` Hola, Mundo
2+
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`.
4+
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). 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.
6+
7+
Este es un ejemplo de cómo usarlo:
8+
```py
9+
print("How are you?")
10+
```
11+
12+
## 📝 Instrucciones:
13+
14+
Usa la función `print()` para escribir "Hello World!" en la consola. Siéntete libre de intentar otras cosas también.
15+
16+
## 💡 Información adicional:
17+
18+
Video de 5 minutos sobre la consola:
19+
https://www.youtube.com/watch?v=vROGBvX_MHQ

‎exercises/02-hello-world/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ This is an example of how to use it:
99
print("How are you?")
1010
```
1111

12-
📝 Instructions:
12+
## 📝 Instructions:
1313

1414
```md
1515
Use the `print()` function to print `"Hello World"` on the console. Feel free to try other things as well.
1616
```
1717

18-
💡 Additional info:
18+
## 💡 Additional info:
19+
1920
5 minutes video about the console:
2021
https://www.youtube.com/watch?v=1RlkftxAo-M
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# `03` Sum of three numbers
2+
3+
## 📝 Instrucciones:
4+
5+
**Planteamiento**
6+
Obteniendo tres números de la entrada, imprime su suma. Cada número es dado en una línea aparte.
7+
8+
**Ejemplo de entrada**
9+
- 2
10+
- 3
11+
- 6
12+
13+
**Ejemplo de salida**
14+
- 11
15+

‎exercises/03-sum_of_three_numbers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `03` Sum of three numbers
22

3-
📝 Instructions:
3+
## 📝 Instructions:
44

55
**Statement**
66
Taking 3 numbers from the input, print their sum. Every number is given on a separate line.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# `04` Área de un triángulo rectángulo
2+
3+
## 📝 Instrucciones:
4+
5+
Escribe un programa que lea la longitud de la base y la altura de un triángulo rectángulo e imprima su área. Cada número es dado en una línea por separado.
6+
7+
![Imagen descriptiva](http://i.imgur.com/6EkzVxA.jpg)
8+
9+
**Ejemplo de entrada**
10+
* 3
11+
* 5
12+
13+
**Ejemplo de salida**
14+
* 7.5
15+
16+
**Teoría**
17+
18+
Si no sabes cómo empezar la solución a este problema, por favor, revisa la teoría en esta lección:
19+
https://snakify.org/lessons/print_input_numbers/
20+
21+
También puedes intentar paso a paso con trozos de la teoría:
22+
https://snakify.org/lessons/print_input_numbers/steps/1/

‎exercises/04-area_of_right_triangle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `04` Area of right triangle
22

3-
📝 Instructions:
3+
## 📝 Instructions:
44

55
Write a program that reads the length of the base and the height of a right-angled triangle and prints the area. Every number is given on a separate line.
66

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /