Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion es/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,14 @@ Inicia el entorno virtual ejecutando:
{% filename %}Terminal{% endfilename %}
```
C:\Users\Name\djangogirls> myvenv\Scripts\activate

```
Sabrás que tienes virtualenv iniciado cuando veas que la línea de comando tiene este prefijo (myvenv):

```
(myenv)C:\Users\Name\djangogirls> myvenv\Scripts\activate

```
> __NOTA:__ en Windows 10 quizás obtengas un error en la consola Window PowerShell diciendo `execution of scripts is disabled on this system`. En ese caso, abre otra ventana Windows PowerShell con la opción "Run as Administrator". Luego intenta escribir lo siguiente antes de iniciar tu entorno virtual:
>
>{% filename %}Terminal{% endfilename %}
Expand All @@ -139,6 +145,13 @@ $ source myvenv/bin/activate

¡Recuerda reemplazar `myvenv` con tu nombre de `virtualenv` que hayas elegido!

Sabrás que tienes virtualenv iniciado cuando veas que la línea de comando tiene este prefijo (myvenv):

```
(myvenv) ~$

```

> __NOTA:__ a veces `source` podría no estar disponible. En ese caso trata hacerlo de esta forma:
>
>{% filename %}Terminal{% endfilename %}
Expand All @@ -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)`.
Copy link
Author

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).


Cuando trabajes en un entorno virtual, `python` automáticamente se referirá a la versión correcta, de modo que puedes utilizar `python` en vez de `python3`.

Expand Down
8 changes: 4 additions & 4 deletions es/python_introduction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Author

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 :)


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`:

Expand Down Expand Up @@ -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.
Copy link
Author

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


¡Juega con esto un rato y descubre qué puedes hacer!

Expand Down