- Linux环境
- 大多Linux发行版均默认安装了Python环境。
- 输入Python可启动Python交互模式
- 程序编辑推荐使用VIM
- Windows环境
- 可下载安装Python的msi包直接安装
- 自带Python的GUI开发环境
- 开发工具很多
# Linux交互界面 [[email protected] ~]# python Python 2.6.6 (r266:84292, Jan 22 2014, 09:37:14) [GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2 Type "help", "copyright", "credits" or "license" for more information. # 退出指令 >>>exit() [[email protected] ~]# # 文本模式 [[email protected] ~]# vim 1.py print ‘hello world‘ [[email protected] ~]# python 1.py hello world >>> print ‘hello world‘ hello world >>> exit() [[email protected] ~]#
Python文件类型
- 源代码
- Python源代码的文件以“py”为扩展名,由Python程序解释,不需要编译
[[email protected] ~]# vim 1.py # python标准格式 #!/usr/bin/python print ‘hello world‘ [[email protected] ~]# chmod +x 1.py [[email protected] ~]# ls -l 1.py -rwxr-xr-x 1 root root 39 6月 21 08:59 1.py [[email protected] ~]# ./1.py hello world
- 字节代码
- Python源文件经编译后生产的扩展名为“pyc”的文件
# 引入模块,对1.py执行编译 [[email protected] shell]# vim 2.py import py_compile py_compile.compile("1.py") # 用python进行编译 [[email protected] shell]# python 2.py [[email protected] shell]# # 这里会生成一个以pyc结尾的文件 [[email protected] shell]# ls -l 总用量 12 -rwxr-xr-x 1 root root 39 6月 21 08:59 1.py -rw-r--r-- 1 root root 112 6月 21 10:37 1.pyc -rwxr-xr-x 1 root root 46 6月 21 10:37 2.py # 这个文件也可以执行 [[email protected] shell]# python 1.pyc hello world
- 优化代码
- 经过优化的源文件,扩展名为“pyo”
[[email protected] shell]# python -O -m py_compile 1.py [[email protected] shell]# ls -l 总用量 16 -rwxr-xr-x 1 root root 39 6月 21 08:59 1.py -rwxr-xr-x 1 root root 112 6月 21 10:37 1.pyc -rwxr-xr-x 1 root root 112 6月 21 10:44 1.pyo -rwxr-xr-x 1 root root 46 6月 21 10:37 2.py
三种代码执行效果
[[email protected] shell]# python 1.py hello world [[email protected] shell]# python 1.pyc hello world [[email protected] shell]# python 1.pyo hello world
时间: 2024-10-05 05:19:22