-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Algunas correcciones de tipeo y cambios en el contenido #3
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,16 +160,16 @@ TypeError: object of type 'int' has no len() | |
|
||
## Variables | ||
|
||
Un concepto importante en programación son las variables. Una variable no es más que un nombre para alguno de forma que puedas usarlo más tarde. Los programadores usan estas variables para almacenar datos, hacer su código más legible y para no tener que recordar qué es cada cosa. | ||
Un concepto importante en programación son las variables. Una variable nombra a un objeto de forma que puedas usarlo más tarde. Los programadores usan estas variables para almacenar datos, hacer su código más legible y para no tener que recordar qué es cada cosa. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Me pareció interesante seguir hablando de 'objetos' en referencia a los datos para seguir la misma línea :) |
||
|
||
Supongamos que queremos crear una nueva variable llamada `name`: | ||
Supongamos que queremos guardar el objeto 'Ola' en una variable llamada `name`: | ||
|
||
{% filename %}Terminal{% endfilename %} | ||
```python | ||
>>> name = "Ola" | ||
``` | ||
|
||
¿Ves? ¡Es fácil! Es simplemente: name equivale a Ola. | ||
¿Ves? ¡Es fácil! Es simplemente: name equivale a 'Ola'. | ||
|
||
Como habrás notado, el programa no devuelve nada como lo hacía antes. ¿Cómo sabemos que la variable existe realmente? Simplemente escribe `name` y pulsa `intro`: | ||
|
||
|
@@ -218,7 +218,7 @@ Traceback (most recent call last): | |
NameError: name 'ctiy' is not defined | ||
``` | ||
|
||
¡Un error! Como puedes ver, Python tiene diferentes tipos de errores y este se llama **NameError**. Python te dará este error si intentas utilizar una variable que no ha sido definida aún. Si más adelante te encuentras con este error, verifica tu código para ver si no has escrito mal una variable. | ||
¡Un error! Como puedes ver, Python tiene diferentes tipos de errores y este se llama **NameError**. Python te dará este error si intentas utilizar una variable que no hemos creado. Si más adelante te encuentras con este error, verifica tu código para ver si no has escrito mal una variable. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hasta ahora el tutorial no ha hecho referencia a qué le llamamos definir una variable |
||
|
||
¡Juega con esto un rato y descubre qué puedes hacer! | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vimos que varias no entienden bien dónde tiene que aparecer el (myvenv).