#Python 3 教程
Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。
Python 介绍及安装教程我们在Python 2.X 版本的教程中已有介绍,这里就不再赘述。
你也可以点击 Python2.x与3.x版本区别 来查看两者的不同。
本教程主要针对 Python 3.x 版本的学习,如果你使用的是 Python 2.x 版本请移步至 Python 2.X 版本的教程。
官方宣布,2020 年 1 月 1 日, 停止 Python 2 的更新。
#查看Python版本
进入python环境后按“Ctrl+z”组合键,回车就能退出python环境
我们可以在命令窗口(Windows 使用 win+R 调出 cmd 运行框)使用以下命令查看我们使用的 Python 版本:
C:\Users\zangaisw>python
以上命令执行结果如下:
C:\Users\zangaisw>python
Python 3.7.8 (tags/v3.7.8:4b47a5b6ba, Jun 28 2020, 08:53:46) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
方法二
C:\Users\zangaisw>python -V
以上命令执行结果如下:
Python 3.7.8
#查看Python的安装路径
我们可以在命令窗口(Windows 使用 win+R 调出 cmd 运行框)使用以下命令查看我们使用的 Python 的安装路径:
方法一:
C:\Users\zangaisw>where python
以上命令执行结果如下:
G:\Program Files\Python37\python.exe
方法二:
我们可以在命令窗口(Windows 使用 win+R 调出 cmd 运行框)使用以下命令
C:\Users\zangaisw>python
以上命令执行结果如下:
G:\Program Files\Python37\python.exe
Python 3.7.8 (tags/v3.7.8:4b47a5b6ba, Jun 28 2020, 08:53:46) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
import sys
回车键
sys.path
回车键
以上命令执行结果如下:
['', 'G:\\Program Files\\Python37\\python37.zip', 'G:\\Program Files\\Python37\\DLLs', 'G:\\Program Files\\Python37\\lib', 'G:\\Program Files\\Python37', 'G:\\Program Files\\Python37\\lib\\site-packages']
其中python安装位置为
G:\Program Files\Python37
python 标准库位置:
G:\Program Files\Python37\lib
第三方库位置:
G:\Program Files\Python37\lib\site-packages
#查看pip安装了多少包以及安转位置
我们可以在命令窗口(Windows 使用 win+R 调出 cmd 运行框)使用以下命令
C:\Users\zangaisw>pip list
以上命令执行结果如下:
C:\Users\zangaisw>pip list
Package Version
------------------ ---------
certifi 2022.12.7
charset-normalizer 3.1.0
idna 3.4
pip 20.1.1
requests 2.30.0
setuptools 47.1.0
urllib3 2.0.2
WARNING: You are using pip version 20.1.1; however, version 23.1.2 is available.
You should consider upgrading via the 'g:\program files\python37\python.exe -m pip install --upgrade pip' command.
查看安装包的安装路径
例如看requests的路径如下
pip show requests