Examples with "taper python" and their translation 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.
Pour vérifier que si Python est installé, il faut simplement taper python dans une console.
Pour installer la bibliothèque, télécharger l'archive, la décompresser, se rendre dans le répertoire ainsi créé et taper python setup.py install, ou bien python setup.py - wihout-libyaml install pour ne pas utiliser la LibYaml.
To install the library, download the archive, unzip it, go to created directory and type python setup.py install, or python setup.py - wihout-libyaml install if you don't want to use LibYaml.
Andere resultaten
La plupart du temps, ceci signifie concrètement qu'il faut taper sage -python setup.py install.
L'interpréteur Python est une fenêtre avec une invite de commande, vous pouvez simplement y taper votre code Python.
The interpreter is a Python window with a command prompt, where you can simply type Python code.
Tout cela a bien fonctionné, mais vous ne pouvez pas taper dans une console Python à chaque fois que vous voulez exécuter un test !
That worked pretty well, but you can't go typing into a Python console each time you want to run a test.
Elle consiste en une grande fenêtre pour les entrées et les sorties, que vous pouvez faire défiler et où vous pouvez taper les commandes Python.
The console consists of a large scrollable main window for input and output, where you can type Python commands.
Au lieu d'avoir à ouvrir le Terminal, de taper « python », d'indiquer le chemin d'accès de votre script et d'appuyer sur la touche Entrée, vous pouvez désormais tout simplement double-cliquer sur votre nouveau fichier!
Instead of opening Terminal, typing "python", the path of the script and then pressing Enter, you can now simply double-click on your new file.
tap.py: TAP producer/consumer tools for Python unittest, en préparation depuis 125 jours, dernière modification il y a 123 jours.
tap.py: TAP producer/consumer tools for Python unittest, 125 days in preparation, last activity 123 days ago.
Il suffit de taper la suivante dans votre script Python et l'exécuter
Just type the following in your Python script and execute it
Cette ligne de commande REPL permet de taper et exécuter instantanément des commandes Python, comme vous le feriez avec un PC.
This REPL command line allows you to type and execute Python commands instantly, just as you would with a PC.
Avec Python 2 il suffisait de taper "print" suivi de ce que vous vouliez afficher.
In Python 2, you only needed to type "print" followed by what you wanted displayed.
Par contre, sachez que dans Python, l'indentation des lignes fait partie de la syntaxe et que taper une ligne de code en début de ligne ou après une ou deux tabulations ne veut pas dire la même chose.
On the other hand be aware that with Python, the lines indentation is part of the syntax and that typing a code line at the beginning of the line or after one or two tabs does not mean the same
Dans Python 3, "print" est devenue une fonction, vous devez donc taper "print()" et inscrire entre les parenthèses ce que vous voulez afficher.
In Python 3, "print" has become a function, so you will need to type "print()", with what you want displayed inside the parentheses.