|
1 | 1 | { |
2 | | - "title": "Tu primer programa: <code class=\"language-python\">print()</code>", |
| 2 | + "title": "Tu Primer Programa: <code class=\"language-python\">print()</code>", |
3 | 3 | "description": "", |
4 | 4 | "content": [ |
5 | 5 | { |
6 | 6 | "type": "subtitle1", |
7 | | - "text": "¿Qué es un programa en Python?" |
| 7 | + "text": "¿Qué es un Programa en Python?" |
8 | 8 | }, |
9 | 9 | { |
10 | 10 | "type": "paragraph", |
|
16 | 16 | }, |
17 | 17 | { |
18 | 18 | "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" |
20 | 20 | }, |
21 | 21 | { |
22 | 22 | "type": "paragraph", |
|
49 | 49 | }, |
50 | 50 | { |
51 | 51 | "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>?" |
53 | 53 | }, |
54 | 54 | { |
55 | 55 | "type": "subtitle2", |
56 | | - "text": "Texto (cadenas - <code class=\"language-python\">str</code>)" |
| 56 | + "text": "Texto (Cadenas - <code class=\"language-python\">str</code>)" |
57 | 57 | }, |
58 | 58 | { |
59 | 59 | "type": "code", |
|
77 | 77 | }, |
78 | 78 | { |
79 | 79 | "type": "test-button", |
80 | | - "text": "Probar todos >>", |
| 80 | + "text": "Probar Todos >>", |
81 | 81 | "code": "print(\"Aprender Python es divertido\")\n\nprint(2025)\n\nname = \"Python\"\nprint(name)" |
82 | 82 | }, |
83 | 83 | { |
|
94 | 94 | }, |
95 | 95 | { |
96 | 96 | "type": "subtitle1", |
97 | | - "text": "Mostrar varios valores a la vez" |
| 97 | + "text": "Mostrar Varios Valores a la Vez" |
98 | 98 | }, |
99 | 99 | { |
100 | 100 | "type": "paragraph", |
|
123 | 123 | }, |
124 | 124 | { |
125 | 125 | "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" |
127 | 127 | }, |
128 | 128 | { |
129 | 129 | "type": "paragraph", |
|
136 | 136 | { |
137 | 137 | "type": "list", |
138 | 138 | "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." |
141 | 141 | ] |
142 | 142 | }, |
143 | 143 | { |
144 | 144 | "type": "subtitle2", |
145 | | - "text": "Ejemplo usando <code class=\"language-python\">sep</code>:" |
| 145 | + "text": "Ejemplo Usando <code class=\"language-python\">sep</code>:" |
146 | 146 | }, |
147 | 147 | { |
148 | 148 | "type": "code", |
|
163 | 163 | }, |
164 | 164 | { |
165 | 165 | "type": "subtitle2", |
166 | | - "text": "Ejemplo usando <code class=\"language-python\">end</code>:" |
| 166 | + "text": "Ejemplo Usando <code class=\"language-python\">end</code>:" |
167 | 167 | }, |
168 | 168 | { |
169 | 169 | "type": "code", |
|
188 | 188 | }, |
189 | 189 | { |
190 | 190 | "type": "subtitle1", |
191 | | - "text": "Espacios, saltos de línea y caracteres especiales" |
| 191 | + "text": "Espacios, Saltos de Línea y Caracteres Especiales" |
192 | 192 | }, |
193 | 193 | { |
194 | 194 | "type": "paragraph", |
|
197 | 197 | { |
198 | 198 | "type": "list", |
199 | 199 | "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." |
204 | 204 | ] |
205 | 205 | }, |
206 | 206 | { |
|
230 | 230 | }, |
231 | 231 | { |
232 | 232 | "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>" |
234 | 234 | }, |
235 | 235 | { |
236 | 236 | "type": "paragraph", |
|
246 | 246 | }, |
247 | 247 | { |
248 | 248 | "type": "test-button", |
249 | | - "text": "Probar error >>", |
| 249 | + "text": "Probar Error >>", |
250 | 250 | "code": "print(\"Hola)" |
251 | 251 | }, |
252 | 252 | { |
253 | 253 | "type": "subtitle1", |
254 | | - "text": "Estructura mínima de un programa en Python" |
| 254 | + "text": "Estructura Mínima de un Programa en Python" |
255 | 255 | }, |
256 | 256 | { |
257 | 257 | "type": "code", |
|
301 | 301 | }, |
302 | 302 | { |
303 | 303 | "type": "subtitle1", |
304 | | - "text": "Ejercicio guiado: tu primer script real" |
| 304 | + "text": "Ejercicio Guiado: Tu Primer Script Real" |
305 | 305 | }, |
306 | 306 | { |
307 | 307 | "type": "paragraph", |
|
330 | 330 | }, |
331 | 331 | { |
332 | 332 | "type": "subtitle1", |
333 | | - "text": "Conclusión del tema" |
| 333 | + "text": "Conclusiones de la Unidad" |
334 | 334 | }, |
335 | 335 | { |
336 | 336 | "type": "paragraph", |
|
339 | 339 | { |
340 | 340 | "type": "list", |
341 | 341 | "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." |
347 | 347 | ] |
348 | 348 | }, |
349 | 349 | { |
|
0 commit comments