python的下载、安装与使用(windows环境)

发布时间:2019-08-30编辑:脚本学堂
本文介绍下,windows环境中,python的下载、安装与使用的相关知识,有需要的朋友参考学习下。

本节内容:
在windows中安装与使用python

0. 下载
官网链接:http://www.python.org/getit/

1. 启动python --交互模式
 

复制代码 代码示例:
 C:WindowsSystem32>python
 Python 2.7.5 (default, May 15 2013, 22:43:36) [MSC v.1500 32 bit (Intel)] on win32
 Type "help", "copyright", "credits" or "license" for more information.
 >>> 1+2
 3
 >>> exit()
 C:WindowsSystem32>

2. 编写python --文本模式
 

复制代码 代码示例:

E:desktoppythonpy_src>gvim hello.py
 E:desktoppythonpy_src>type hello.py
 print 'hello world, python!'

 E:desktoppythonpy_src>python hello.py
 hello world, python!

3. 三种可执行文件类型
 (1) .py
 (2) .pyc
    字节代码, 源文件 编译后 形成的字节码文件
    

复制代码 代码示例:
compile.py
         import py_compile
         py_compile.compile('hello.py')
     python compile.py
        ==> hello.pyc
 

 (3) .pyo
    经过优化的源文件
   

复制代码 代码示例:

python -O -m py_compile hello.py
        ==> hello.pyo
--------------------------------------------
    E:desktoppythonpy_src>dir /b
    compile.py
    hello.py
    hello.pyc
    hello.pyo

    E:desktoppythonpy_src>python hello.py
    hello world, python!
    E:desktoppythonpy_src>hello.py
    hello world, python!

    E:desktoppythonpy_src>python hello.pyc
    hello world, python!
    E:desktoppythonpy_src>hello.pyc
    hello world, python!

    E:desktoppythonpy_src>python hello.pyo
    hello world, python!
    E:desktoppythonpy_src>hello.pyo
    hello world, python!