Comment on Hello World execution timeComments−ronnix15yThe Python interpreter does an implicit "import site" on initialization.You can disable it using the -S option if/when you care about startup time.Here are some numbers on my MacBook Pro:$ ./run.sh bash hello.shmedian 0.002$ ./run.sh python hello.pymedian 0.016$ ./run.sh python -S hello.pymedian 0.008
Comments
The Python interpreter does an implicit "import site" on initialization.
You can disable it using the -S option if/when you care about startup time.
Here are some numbers on my MacBook Pro:
$ ./run.sh bash hello.sh
median 0.002
$ ./run.sh python hello.py
median 0.016
$ ./run.sh python -S hello.py
median 0.008