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 1 commit
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
6 changes: 4 additions & 2 deletions docs/1.md
Original file line number Diff line number Diff line change
Expand Up @@ -1002,14 +1002,16 @@ Una vez creado, el valor no se puede cambiar.
>>> 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

>>> El mensaje anterior 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.

Los >>> van en su propia linea:

>>> s[1] = 'a'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'str' object does not support item assignment
>>>

Luego:

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

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

Todo eso tiene que ir seguido porque estamos en el interpretador / consola Python donde se ejecuta una sentencia y el interpretador responde con el error y luego tiene el >>> en la próxima linea porque esta esperando el comando.


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, en <modulo>
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