De man python
:
-v Print a message each time a module is initialized, showing the place (filename or built-in module) from
which it is loaded. When given twice, print a message for each file that is checked for when searching
for a module. Also provides information on module cleanup at exit.
-V , -version
Prints the Python version number of the executable and exits.
Longa história curta
-
python -v
: quando você executar python -v
several modules
será carregado em antecipação ao trabalho para o qual o python deve fazer por você, python
sozinho obterá o prompt do python, mas não será mostrar-lhe os módulos carregados e a localização do arquivo, por isso python
e python -v
são equivalentes, mas o primeiro é mais detalhado, pois mostra o que obtém loaded
e unloaded
on exit
. Com isso você pode ver quais módulos estão disponíveis para você trabalhar em python.
-
python -V
: simplesmente imprime o número da versão e sai sem prompt python.