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

Traducción 1.4.7 #52

Merged
merged 5 commits into from
Feb 10, 2021
Merged
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
15 changes: 13 additions & 2 deletions docs/1.md
Original file line number Diff line number Diff line change
Expand Up @@ -999,11 +999,22 @@ Las cadenas son "inmutables" o de solo lectura.
Una vez creado, el valor no se puede cambiar.

```python
>>> s = 'Hello World'
>>> s = 'Hola Mundo'
>>> s[1] = 'a'
Traceback (most recent call last):
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Estos tres ` van en la linea 1008 el final del traceback. En este momento mira como queda el traceback en ingles:

image


Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Borra esta linea

File "<stdin>", line 1, in <module>
TypeError: 'str' object does not support item assignment

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Borra esta linea

>>>
```
El mensaje de error mencionado anteriormente, traducido al español es el siguiente:

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Abre bloque de código con tres `

Revisa la sentencia más reciente:
Archivo "<stdin>", línea 1, en <modulo>
TipoDeError: 'str' La sentencia utilizada no es válida.
```

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Borra esta linea

>>>
```

Expand Down