[PIPython] Approssimazione
MArco
marco.amato1
Sab 12 Feb 2005 13:28:23 CET
Dalle prime pagine della documentazione python
"if os.path.isfile('.pythonrc.py'): execfile('.pythonrc.py')". If you
want to use the startup file in a script, you must do this explicitly in
the script:
import os
// importo il modulo os
filename = os.environ.get('PYTHONSTARTUP')
//creo un filename e lo inizializzo come PYTHONSTARTUP ??
// variabile di ambiente?
if filename and os.path.isfile(filename):
// filename (cosa?) e esiste il file
execfile(filename)
//eseguo il file..
Non ho capito...
Questo viene eseguito quando avvio l'interprete python ?
Grazie
More information about the Python
mailing list