如何查看python的当前版本号
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查看python的当前版本号相关的知识,希望对你有一定的参考价值。
1、将python的安装路径添加到环境变量之后,可以通过命令提示符操作python,按win+R键打开运行,输入“cmd”,如下图所示。
2、进去命令提示符之后,输入“python”。
3、按回车键之后,可以看到python的当前版本号,可以看到现在是3.7版本的。
参考技术A每次打开python顶端会显示版本号
在程序中判断版本号可以通过import sys sys.version
在dos下可以通过python -V查看
拓展资料:
Python 简介
Python 是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本语言。
Python 的设计具有很强的可读性,相比其他语言经常使用英文关键字,其他语言的一些标点符号,它具有比其他语言更有特色语法结构。
Python 是一种解释型语言: 这意味着开发过程中没有了编译这个环节。类似于php和Perl语言。
Python 是交互式语言: 这意味着,您可以在一个Python提示符,直接互动执行写你的程序。
Python 是面向对象语言: 这意味着Python支持面向对象的风格或代码封装在对象的编程技术。
Python 是初学者的语言:Python 对初级程序员而言,是一种伟大的语言,它支持广泛的应用程序开发,从简单的文字处理到 WWW 浏览器再到游戏。
或者是
python --version 参考技术C
控制台(windows下cmd或powershell,linux下终端)输入
python进入交互解释器,第一行(截图中红色圈出的部分)即为版本号:
前提是Python可执行程序所在目录在系统路径即环境变量中。一般Python安装好就默认添加到系统路径中去了。
参考技术D每次打开python顶端会显示版本号
在程序中判断版本号可以通过import sys sys.version
在dos下可以通过python -V查看
如何查看selenium的版本号
方法一:
打开cmd,输入python
>>> import selenium >>> help(selenium) Help on package selenium: NAME selenium FILE d:\python27\lib\site-packages\selenium\__init__.py DESCRIPTION # Licensed to the Software Freedom Conservancy (SFC) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The SFC licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. PACKAGE CONTENTS common (package) webdriver (package) DATA __version__ = ‘3.0.2‘ VERSION 3.0.2
方法二:
打开cmd,输入
pip show selenium
以上是关于如何查看python的当前版本号的主要内容,如果未能解决你的问题,请参考以下文章