欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python环境搭建

程序员文章站 2022-03-10 22:16:56
...

 

学习网站:http://www.runoob.com/python3/python3-install.html,学习的是python3

https://www.python.org/downloads/release/python-370/官网下载python进行安装(Windows x86-64 web-based installer),这个是有网进行在线安装的64位版本,安装的目录如下:

Python环境搭建

然后,再进行测试。cmd进入dos窗口,输入python,会有类似如下的显示,表明安装成功。

C:\Users\Administrator>python
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

 编辑一个test.py文件,然后在dos窗口进入test.py的目录下,python test.py,进行执行

str = "hello world"
print (str)

运行结果如下:

Python环境搭建