-
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?
Conversation
@@ -148,7 +161,6 @@ $ source myvenv/bin/activate | |||
|
|||
<!--endsec--> | |||
|
|||
Sabrás que tienes `virtualenv` iniciado cuando veas que la línea de comando tiene este prefijo `(myvenv)`. |
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).
@@ -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 comment
The 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 :)
@@ -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 comment
The 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
Algunas correcciones que estamos viendo las chicas en los preparativos del Taller de Programación para Mujeres que se hace en Cba, en el marco de la PyConAr.