python: add Dutch translation (#11803)

pull/23/head
Sebastiaan Speck 2023-12-21 11:57:05 +01:00 committed by GitHub
parent 26bc4a5390
commit cbc9465125
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

36
pages.nl/common/python.md Normal file
View 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`