Windows python 环境之快速搭建及访问

@下载环境包
@https://www.python.org/downloads/
@http://www.jetbrains.com/pycharm/download/#section=windows

1、cmd 运行: 

F:\python_environment>python.exe -V
Python 3.5.3

F:\python_environment>python.exe
Python 3.5.3 (v3.5.3:1880cb95a742, Jan 16 2017, 16:02:32) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print("test");
test
>>>
2、pycharm 创建项目

Windows python 环境之快速搭建及访问_第1张图片

3、通过浏览器访问
@http://blog.csdn.net/everything1209/article/details/53392879


F:\python_environment>python ../python_www/test.py
Ready for Python code on port 39093...
127.0.0.1 - - [21/May/2017 08:35:49] "GET / HTTP/1.1" 200 216


你可能感兴趣的:(python)