mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
python: add Dutch translation (#11803)
This commit is contained in:
parent
26bc4a5390
commit
cbc9465125
1 changed files with 36 additions and 0 deletions
36
pages.nl/common/python.md
Normal file
36
pages.nl/common/python.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# python
|
||||
|
||||
> Python taal interpreter.
|
||||
> Meer informatie: <https://www.python.org>.
|
||||
|
||||
- Start een REPL (interactieve shell):
|
||||
|
||||
`python`
|
||||
|
||||
- Voer een specifiek Python bestand uit:
|
||||
|
||||
`python {{pad/naar/bestand.py}}`
|
||||
|
||||
- Voer een specfiek Python bestand uit en start een REPL:
|
||||
|
||||
`python -i {{pad/naar/bestand.py}}`
|
||||
|
||||
- Voer een Python expressie uit:
|
||||
|
||||
`python -c "{{expressie}}"`
|
||||
|
||||
- Voer het script uit van een gespecificeerd bibliotheek module:
|
||||
|
||||
`python -m {{module}} {{argumenten}}`
|
||||
|
||||
- Installeer een pakket met `pip`:
|
||||
|
||||
`python -m pip install {{pakket}}`
|
||||
|
||||
- Debug interactief een Python script:
|
||||
|
||||
`python -m pdb {{pad/naar/bestand.py}}`
|
||||
|
||||
- Start de ingebouwde HTTP server op poort 8000 in de huidige map:
|
||||
|
||||
`python -m http.server`
|
Loading…
Add table
Reference in a new issue