Skip to content

Commit 7dab94a

Browse files
committed
Add videos in Spanish and fix a solution
1 parent 58db69b commit 7dab94a

File tree

24 files changed

+96
-5
lines changed

24 files changed

+96
-5
lines changed

exercises/00-Welcome/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
intro: "https://www.youtube.com/watch?v=IXNSwnN-YqM"
3+
---
4+
15
# Welcome to the Python Beginner Course!
26

37
¡Estamos muy entusiasmados por tenerte aquí! 🎉 😂

exercises/01-Console/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=z6OnN4s__TU"
3+
---
4+
15
# `01` Console
26

37
En Python, usamos **print** para que el computador escriba cualquier cosa que queramos (el contenido de una variable, una string dado, etc.) en algo llamado "la consola".

exercises/02-Declare-Variables/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=FeSo8xlnrTI"
3+
---
4+
15
# `02` Declare Variables
26

37
En la programación, usamos variables como si fueran cajas (o contenedores) para guardar diferentes tipos de información. Así es cómo creamos una variable:

exercises/03-Print-Variables-In-The-Console/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=SM71mzjuvfA"
3+
---
4+
15
# `03` Print more Variables in The Console
26

37
También puedes imprimir más de una variable en la misma función `print()` separando con una coma `,` las variables a imprimir. De esta manera:

exercises/04-Multiply-Two-Values/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=p4PY8s6asfw"
3+
---
4+
15
# `04` Multiply Two Values
26

37
Cualquier lenguaje de programación te permite realizar operaciones matemáticas básicas como multiplicación, división, etc.

exercises/05-User-Inputed-Values/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=pe_DEzC-528"
3+
---
4+
15
# `05` User Inputed Values
26

37
Otra cosa genial de las variables es que no necesitas saber su valor para poder trabajar con ellas.

exercises/06-String-Concatenation/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=4y8xYy273f4"
3+
---
4+
15
# `06` String Concatenation
26

37
La concatenación de strings es una tarea común en la programación que implica combinar o unir dos o más strings.

exercises/07-Create-a-Basic-HTML/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=zbTM_T6an4k"
3+
---
4+
15
# `07` Create a Basic HTML
26

37
Continuemos concatenando strings para generar un documento HTML básico...

exercises/08.1-Your-First-If/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=n5skqOQfQ84"
3+
---
4+
15
# `08.1` Your First If...
26

37
La aplicación actual está preguntando cuánto dinero tiene el usuario. Una vez el usuario ingresa la cantidad, debemos 'imprimir' usando **print** una de las siguientes respuestas:

exercises/08.2-How-Much-The-Wedding-Costs/README.es.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=z3_0x8MlpFs"
3+
---
4+
5+
16
# `08.2` How Much The Wedding Costs (if...else)
27

38
Aquí tenemos una tabla de precios de una compañía de catering de bodas:

exercises/09-Random-Numbers/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=9IjotW64sxA"
3+
---
4+
15
# `09` Random Numbers
26

37
Puedes usar la función `randint()` para obtener un número entero aleatorio. `randint()` es una función interna del módulo `random` en Python3.

exercises/10-Calling-Your-First-Function/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=0Jxyc4eClNA"
3+
---
4+
15
# `10` Calling Your First Function
26

37
Las funciones son increíbles por muchas cosas, pero principalmente porque puedes encapsular tu código en piezas y reusar esas piezas muchas veces sin tener que escribir todo el código cada vez.

exercises/10.1-Creating-Your-First-Function/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=ePn8AzCG57Y"
3+
---
4+
15
# `10.1` Creating Your First Function
26

37
## 📝 Instrucciones:

exercises/11-Create-A-New-Function/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=6LhV15O9kvQ"
3+
---
4+
15
# `11` Create a New Function
26

37
Como sabes, las funciones son un bloque de código útil que puedes reusar tantas veces como necesites.

exercises/12-Rand-From-One-to-Twelve/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=tqZIlc1gVi8"
3+
---
4+
15
# `12` Rand From One to Twelve
26

37
## 📝 Instrucciones:

exercises/13-Your-First-Loop/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=0-vljraNvwE"
3+
---
4+
15
# `13` Your First Loop
26

37
## 📝 Instrucciones:

exercises/14-Create-A-For-Loop/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=ckSAqxzi5vs"
3+
---
4+
15
# `14` Create A For Loop
26

37
Los bucles o loops son muy útiles. No tienes que reescribir las mismas líneas muchas veces.

exercises/15-Looping-With-FizzBuzz/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=VkAccivrOPM"
3+
---
4+
15
# `15` Looping With FizzBuzz
26

37
Esta es una típica prueba de principiante que es exigida para las entrevistas en Google, Facebook y las demás grandes compañías de tecnología.

exercises/16-Random-Colors-Loop/README.es.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=jYK2i0_dtns"
3+
---
4+
5+
16
# `16` Random Colors (Loop)
27

38
Hemos creado una función que devuelve un color basado en un número entre 0 y 3 (cualquier otro número retornará el color `black`).

exercises/17-Russian-Roulette/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=KqO8ebdqs5I"
3+
---
4+
15
# `17` Russian Roulette
26

37
¿Has jugado a la ruleta rusa? ¡Es muy divertido! Si no pierdes... (¡¡¡muuuajajajaja!!!).

exercises/18-The-Beatles/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=0Y2mHwwQBGE"
3+
---
4+
15
# `18` The Beatles
26

37
¿A quién no le gusta The Beatles?
+5-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# ✅↓ Write your code here ↓✅
22
def sing():
3+
song = ""
34
for i in range(11):
45
if i == 4:
5-
print("there will be an answer,")
6+
song += "there will be an answer,\n"
67
elif i == 10:
7-
print("whisper words of wisdom, let it be")
8+
song += "whisper words of wisdom, let it be"
89
else:
9-
print("let it be,")
10-
return None
10+
song += "let it be,\n"
11+
return song
1112

1213
sing()

exercises/19-Bottles-Of-Milk/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=iLH9Hg4PAmw"
3+
---
4+
15
# `19` Bottles Of Milk
26

37
¿Has escuchado la canción sobre las 99 botellas de leche? Es una gran canción, para nada aburrida...

learn.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"video": {
3030
"intro": {
31-
"es": "https://www.youtube.com/watch?v=amyDNhZwGJQ",
31+
"es": "https://www.youtube.com/watch?v=IXNSwnN-YqM",
3232
"en": "https://www.youtube.com/watch?v=amyDNhZwGJQ"
3333
}
3434
}

0 commit comments

Comments
 (0)