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 4 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
12 changes: 11 additions & 1 deletion docs/1.md
Original file line number Diff line number Diff line change
Expand Up @@ -999,11 +999,21 @@ 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'

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

Traceback (most recent call last):
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

>>>

Copy link
Member

Choose a reason for hiding this comment

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

Cierra el bloque de codigo con tres `

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