Skip to content

Commit cc90f2b

Browse files
committed
reviewing module1-learning-unit2-es
1 parent cc9e578 commit cc90f2b

1 file changed

Lines changed: 27 additions & 27 deletions

File tree

data/modules/module1/learning-units/learning-unit2/learning-unit2-es.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"title": "Tu primer programa: <code class=\"language-python\">print()</code>",
2+
"title": "Tu Primer Programa: <code class=\"language-python\">print()</code>",
33
"description": "",
44
"content": [
55
{
66
"type": "subtitle1",
7-
"text": "¿Qué es un programa en Python?"
7+
"text": "¿Qué es un Programa en Python?"
88
},
99
{
1010
"type": "paragraph",
@@ -16,7 +16,7 @@
1616
},
1717
{
1818
"type": "subtitle1",
19-
"text": "La función <code class=\"language-python\">print()</code>: tu primera herramienta"
19+
"text": "La Función <code class=\"language-python\">print()</code>: Tu Primera Herramienta"
2020
},
2121
{
2222
"type": "paragraph",
@@ -49,11 +49,11 @@
4949
},
5050
{
5151
"type": "subtitle1",
52-
"text": "¿Qué puedo mostrar con <code class=\"language-python\">print()</code>?"
52+
"text": "¿Qué Puedo Mostrar Con <code class=\"language-python\">print()</code>?"
5353
},
5454
{
5555
"type": "subtitle2",
56-
"text": "Texto (cadenas - <code class=\"language-python\">str</code>)"
56+
"text": "Texto (Cadenas - <code class=\"language-python\">str</code>)"
5757
},
5858
{
5959
"type": "code",
@@ -77,7 +77,7 @@
7777
},
7878
{
7979
"type": "test-button",
80-
"text": "Probar todos >>",
80+
"text": "Probar Todos >>",
8181
"code": "print(\"Aprender Python es divertido\")\n\nprint(2025)\n\nname = \"Python\"\nprint(name)"
8282
},
8383
{
@@ -94,7 +94,7 @@
9494
},
9595
{
9696
"type": "subtitle1",
97-
"text": "Mostrar varios valores a la vez"
97+
"text": "Mostrar Varios Valores a la Vez"
9898
},
9999
{
100100
"type": "paragraph",
@@ -123,7 +123,7 @@
123123
},
124124
{
125125
"type": "subtitle1",
126-
"text": "Cómo funciona <code class=\"language-python\">print()</code> internamente"
126+
"text": "Cómo Funciona <code class=\"language-python\">print()</code> Internamente"
127127
},
128128
{
129129
"type": "paragraph",
@@ -136,13 +136,13 @@
136136
{
137137
"type": "list",
138138
"items": [
139-
"<code class=\"language-python\">sep</code> → Define el separador entre elementos",
140-
"<code class=\"language-python\">end</code> → Define lo que se imprime al final de la línea"
139+
"<code class=\"language-python\">sep</code> → Define el separador entre elementos.",
140+
"<code class=\"language-python\">end</code> → Define lo que se imprime al final de la línea."
141141
]
142142
},
143143
{
144144
"type": "subtitle2",
145-
"text": "Ejemplo usando <code class=\"language-python\">sep</code>:"
145+
"text": "Ejemplo Usando <code class=\"language-python\">sep</code>:"
146146
},
147147
{
148148
"type": "code",
@@ -163,7 +163,7 @@
163163
},
164164
{
165165
"type": "subtitle2",
166-
"text": "Ejemplo usando <code class=\"language-python\">end</code>:"
166+
"text": "Ejemplo Usando <code class=\"language-python\">end</code>:"
167167
},
168168
{
169169
"type": "code",
@@ -188,7 +188,7 @@
188188
},
189189
{
190190
"type": "subtitle1",
191-
"text": "Espacios, saltos de línea y caracteres especiales"
191+
"text": "Espacios, Saltos de Línea y Caracteres Especiales"
192192
},
193193
{
194194
"type": "paragraph",
@@ -197,10 +197,10 @@
197197
{
198198
"type": "list",
199199
"items": [
200-
"<code class=\"language-python\">\\n</code> → Salto de línea",
201-
"<code class=\"language-python\">\\t</code> → Tabulación",
202-
"<code class=\"language-python\">\\\"</code> → Comillas dentro de comillas",
203-
"<code class=\"language-python\">\\\\</code> → Barra invertida literal"
200+
"<code class=\"language-python\">\\n</code> → Salto de línea.",
201+
"<code class=\"language-python\">\\t</code> → Tabulación.",
202+
"<code class=\"language-python\">\\\"</code> → Comillas dentro de comillas.",
203+
"<code class=\"language-python\">\\\\</code> → Barra invertida literal."
204204
]
205205
},
206206
{
@@ -230,7 +230,7 @@
230230
},
231231
{
232232
"type": "subtitle1",
233-
"text": "Un error muy común al usar <code class=\"language-python\">print()</code>"
233+
"text": "Un Error Muy Común Al Usar <code class=\"language-python\">print()</code>"
234234
},
235235
{
236236
"type": "paragraph",
@@ -246,12 +246,12 @@
246246
},
247247
{
248248
"type": "test-button",
249-
"text": "Probar error >>",
249+
"text": "Probar Error >>",
250250
"code": "print(\"Hola)"
251251
},
252252
{
253253
"type": "subtitle1",
254-
"text": "Estructura mínima de un programa en Python"
254+
"text": "Estructura Mínima de un Programa en Python"
255255
},
256256
{
257257
"type": "code",
@@ -301,7 +301,7 @@
301301
},
302302
{
303303
"type": "subtitle1",
304-
"text": "Ejercicio guiado: tu primer script real"
304+
"text": "Ejercicio Guiado: Tu Primer Script Real"
305305
},
306306
{
307307
"type": "paragraph",
@@ -330,7 +330,7 @@
330330
},
331331
{
332332
"type": "subtitle1",
333-
"text": "Conclusión del tema"
333+
"text": "Conclusiones de la Unidad"
334334
},
335335
{
336336
"type": "paragraph",
@@ -339,11 +339,11 @@
339339
{
340340
"type": "list",
341341
"items": [
342-
"Qué es un programa en Python",
343-
"Cómo funciona <code class=\"language-python\">print()</code>",
344-
"Cómo usar <code class=\"language-python\">sep</code> y <code class=\"language-python\">end</code>",
345-
"Cómo controlar saltos de línea y tabulaciones",
346-
"Cómo escribir un programa mínimo válido"
342+
"Qué es un programa en Python.",
343+
"Cómo funciona <code class=\"language-python\">print()</code>.",
344+
"Cómo usar <code class=\"language-python\">sep</code> y <code class=\"language-python\">end</code>.",
345+
"Cómo controlar saltos de línea y tabulaciones.",
346+
"Cómo escribir un programa mínimo válido."
347347
]
348348
},
349349
{

0 commit comments

Comments
 (0)