Translation of "Python usa" in English
We couldn’t find this entry. Showing approximate results. Check your spelling or suggest adding this term to the dictionary.
Python usa cero y tienes que saber esto
Sin utilizar las llaves que se usan en la mayoría de los lenguajes, Python usa la indentación para distinguir los diferentes bloques de código.
Free of curly brackets used in a majority of other programming languages, Python uses indentation to distinguish between different blocks of code.
El lenguaje de programación Python usa indentación para indicar estructuras de control, por tanto se requiere obligatoriamente una buena indentación.
Python uses indentation to indicate control structures, so correct indentation is required.
Y dado que Python usa recolección de basura y recuento de referencias, los usuarios del lenguaje no necesitan preocuparse con la reserva y liberación de memoria.
And since Python uses reference counting and garbage collection, users of the language don't have to bother themselves with allocating and freeing memory.
Para los diccionarios, Python usa un algoritmo llamado tabla de dispersión, que tiene una propiedad destacada-el operador in emplea la misma cantidad de tiempo sin importar cuántos elementos haya en el diccionario.
For dictionaries, Python uses an algorithm called a hash table that has a remarkable property-the in operator takes about the same amount of time no matter how many items there are in a dictionary.
En primer lugar, Python usa la función range para crear una lista de números del 1 al 12.
First of all, python uses the range function to create a list of numbers from 1 to 12.
Otros paradigmas están soportados mediante el uso de extensiones. Python usa tipado dinámico y conteo de referencias para la administración de memoria.
Python uses dynamic typing and a combination of reference counting and a cycle-detecting garbage collector for memory management.
Python usa [[tipado dinámico]] y [[conteo de referencias]] para la administración de memoria.
Python uses dynamic typing and a mix of reference counting and a cycle-detecting garbage collector for memory management.
Python usa el valor especial "None" para indicar que no hay ningún valor.
Python uses the special value "None" to mean there's no value.
La mayor parte de los lenguajes presentan un marcador de fin de bloque (como el WEND de BASIC o las llaves en Tcl) pero Python usa el sangrado para indicar la estructura.
Most languages have an end of block marker (like BASIC's WEND or Tcl's braces) but Python uses indentation to indicate the structure.
Python usa el Global Lock Interpreter, por lo tanto, el uso de hilos es solo útil para operaciones de E/S mayores.
Python uses the Global Lock Interpreter, so threading is profitable only for larger I/O operations.
Si la afirmación falla, Python usa ArgumentExpression como argumento para la AssertionError.
If the assertion fails, Python uses ArgumentExpression as the argument for the AssertionError.
Python usa tipado dinámico y conteo de referencias para la administración de memoria.
Python features a dynamic type system and automatic memory management.