Skip to content Skip to main navigation Skip to footer

Python: 如何查看python的当前版本号

于一个python新手来说,查看python语言的版本号可能是必须会做的操作,那么在linux/unix/windows系统下如何来查看系统安装的python的版本号呢?

当你在系统上安装了python后,(linux里是默认自带python的),你只需要输入下面的简单的命令来查看python的版本号:

python -v

或者是

python --version

例如下面的例子:

[root@devops osetc]# python -V
Python 2.6.6
[root@devops osetc]# python --version
Python 2.6.6

如果当前安装了多个版本的python,那么通过-V 和–version这两个选项就可以显示出当前正在使用的或者说是默认的python版本号。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.