Python3.8.5 下载
Python官网:https://www.Python.org
Python官方文档地址:https://docs.Python.org/zh-cn/3/
Python官网 Windows下载地址:https://www.Python.org/downloads/windows/
Python官网Windows3.8.5版本下载地址:https://www.Python.org/ftp/Python/3.8.5/Python-3.8.5-amd64.exe
Python3.8.5 安装
下载后安装勾选加入环境变量,默认下一步皆可安装成功。
运行Python
查看版本号
C:\Users\admin>Python -V
Python 3.8.5
C:\Users\admin>Python --version
Python 3.8.5
进入Python交互模式
进入Python交互模式下默认打印版本和版权信息等,如果想去除可加上-q参数
C:\Users\admin>Python
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
C:\Users\admin>Python
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>