Vertaling van "a Python que" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Finalmente, le pedimos a Python que imprima el valor que está actualmente en y.
Then we ask Python to print out the value currently in y.
Estos dos puntos indican a Python que vamos a escribir lo que ocurre cuando se hace una llamada a la función.
This colon indicates to Python that we're about to type what happens when the function is called.
A continuación le pedimos a Python que recupere x, lo multiplique por siete y coloque el nuevo valor calculado en y.
Then we ask Python to retrieve x and multiply it by seven and put the newly computed value in y.
Para decirle a Python que quieres especificar reverse sin tener que cambiar key, puedes hacer uso de =
To tell Python you want to specify reverse without changing anything about key, you can use =
El: es utilizado para seleccionar; en este ejemplo, le dice a Python que selecciona todas las filas.
The: is for slicing; in this example, it tells Python to include all rows.
Lo bueno de pedirle a Python que hable es que podemos incluso decirle qué debe decir, pasándole un mensaje entre comillas
The nice thing about telling Python to speak is that we can even tell it what to say by giving it a message in quotes
Por ejemplo, intentemos la expresión 2+3 y le preguntaremos a Python que la evalúe.
For example let's try the instruction two + three and ask Python to evaluate it.
En este ejemplo, le pedimos a Python que recuerde el valor seis y use la etiqueta x, para que podemos recuperar ese valor más tarde.
In this example, we ask Python to remember the value six and use the label x so we can retrieve the value later.
"def" es una forma corta de decir definición; le estás diciendo a Python que quieres definir una nueva función.
Def is short for define and you're telling Python that you want to define a new function.
Esta convención le indica a Python que a la instrucción le sigue una porción de código (un bloque).
That just tells Python that there's a chunk of code (a block) coming up.
En la primera línea le diremos a Python que cargue («import») en memoria las librerías necesarias para graficar.
In the first line we will tell Python to load ("import") in memory the necessary libraries to graph.
Decirle a Python que realice la búsqueda de esos paquetes
Set a PYTHONPATH to tell Python to look for packages there
"def" indica a python que estamos definiendo una función.