Skip to content

Commit aae2ee1

Browse files
committed
removed label references
1 parent f3c2cd0 commit aae2ee1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ En la programación, usamos variables como si fueran cajas (o contenedores) para
66
name = "Daniel"
77
```
88

9-
En este ejemplo, `name` es la variable, actuando como una etiqueta para el valor `"Daniel"`. Piénsalo como una etiqueta en una caja. Dentro de esta 'caja', estamos almacenando el valor `"Daniel"`, y podemos usar la etiqueta `name` para referirnos a él más tarde. Al nombrar tus variables, puedes elegir casi cualquier nombre, pero debe comenzar con una letra o un guión bajo (`_`). Es útil elegir un nombre que describa lo que hay dentro de la 'caja' para que puedas entender fácilmente lo que representa más adelante.
9+
En este ejemplo, `name` es la variable, actuando como una caja para almacenar el valor `"Daniel"`. Dentro de esta 'caja', estamos almacenando el valor `"Daniel"`, y podemos usar `name` para referirnos a este valor más tarde. Al nombrar tus variables, puedes elegir casi cualquier nombre, pero debe comenzar con una letra o un guión bajo (`_`). Es útil elegir un nombre que describa lo que hay dentro de la 'caja' para que puedas entender fácilmente lo que representa más adelante.
1010

1111
## 📝 Instrucciones:
1212

exercises/02-Declare-Variables/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ tutorial: "https://www.youtube.com/watch?v=dWWvZkaPwDw"
44

55
# `02` Declare Variables
66

7-
In programming, we use variables like boxes (or containers) to keep different kinds of information. Here's how to create a variable:
7+
In programming, we use variables like boxes (or containers) to store different kinds of information. Here's how to create a variable:
88

99
```py
1010
name = "Daniel"
1111
```
1212

13-
In this example, `name` is the variable, acting like a label for the value `"Daniel"`. Think of it as a nametag on a box. Inside this 'box', we're storing the value `"Daniel"`, and we can use the label `name` to refer to it later. When naming your variables, you can choose almost any name, but it must begin with a letter or an underscore (`_`). It's helpful to pick a name that describes what's inside the 'box' so you can easily understand what it represents later on.
13+
In this example, `name` is the variable, acting like a box to store the value `"Daniel"`. Inside this 'box', we're storing the value `"Daniel"`, and we can use `name` to refer to it later. When naming your variables, you can choose almost any name, but it must begin with a letter or an underscore (`_`). It's helpful to pick a name that describes what's inside the 'box' so you can easily understand what it represents later on.
1414

1515
## 📝 Instructions:
1616

0 commit comments

Comments
 (0)