如何查找Python版本

时间:2020-01-09 14:16:32  来源:igfitidea点击:

如何在UNIX/* BSD/Linux/Apple OS X操作系统下找出python编程语言版本?
您只需执行以下命令来查找python版本(打开终端应用程序或shell提示符):

## type at your shell ##
python -V

或者

## type at your shell ##
python --version

输出示例:

Python 2.7.14

所以我正在使用Python版本2.17.14。

-V或版本选项显示可执行文件的Python版本号,然后退出。
对于Python 3,请尝试以下follwoing命令:

$ python3 -V
## or ##
$ python3 --version

输出示例:

Python 3.6.3