python, python3: add Italian translation
This commit is contained in:

committed by
Starbeamrainbowlabs

parent
5fed7f9bc7
commit
c9ed598532
32
pages.it/common/python.md
Normal file
32
pages.it/common/python.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# python
|
||||
|
||||
> Interprete del linguaggio Python.
|
||||
> Maggiori informazioni: <https://www.python.org>.
|
||||
|
||||
- Avvia una REPL (shell interattiva):
|
||||
|
||||
`python`
|
||||
|
||||
- Esegue lo script contenuto in un file Python:
|
||||
|
||||
`python {{script.py}}`
|
||||
|
||||
- Esegue uno script all'interno della shell interattiva:
|
||||
|
||||
`python -i {{script.py}}`
|
||||
|
||||
- Esegue un'espressione Python:
|
||||
|
||||
`python -c "{{expression}}"`
|
||||
|
||||
- Esegue lo script di un modulo presente nella libreria:
|
||||
|
||||
`python -m {{modulo}} {{argomenti}}`
|
||||
|
||||
- Installa un pacchetto usando `pip`:
|
||||
|
||||
`python -m pip install {{nome_pacchetto}}`
|
||||
|
||||
- Esegue il debug interattivo di uno script Python:
|
||||
|
||||
`python -m pdb {{script.py}}`
|
Reference in New Issue
Block a user