You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/02-Declare-Variables/README.es.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,12 @@ En este ejemplo, `name` es la variable, actuando como una caja para almacenar el
14
14
15
15
## 📝 Instrucciones:
16
16
17
-
1. Declara una variable con el valor `"Yellow"` y luego imprímelo en la consola.
17
+
1. Declara una variable llamada `name`con el valor `"Yellow"` y luego imprímelo en la consola.
18
18
19
19
2. Luego, imprime su valor en la consola usando `print(name)`.
20
20
21
21
## 💡 Pistas:
22
22
23
-
+Puedes darle el nombre que quieras a la variable, pero su valor tiene que ser el texto "Yellow".
23
+
+El nombre de la variable debe ser `name` para pasar los tests y su valor tiene que ser el texto "Yellow".
24
24
25
25
+ Si necesitas más explicación sobre qué son los **strings** y cómo funcionan en Python, puedes ver este clip: https://www.youtube.com/watch?v=yT0jixU3M2c&ab_channel=ProgramaResuelto (`ctrl + click` en el enlace para abrir el video)
0 commit comments