标签:技术 完成 python -o http 字节 images 代码 src
python文件类型以.py结尾的文本文件
例如
vim 1.py
#!/usr/bin/python
print ‘hello word‘
python 1.py
由python解释器进行解释,不需要编译
python编译完成后的文件.pyc
vim 2.py
#!/usr/bin/python
import py_compile
py_compile.compile(‘1.py‘)
python 2.py
编译文件
编译之后会产生.pyc文件
python 1.pyc
python -O -m py_compile 1.py
标签:技术 完成 python -o http 字节 images 代码 src
原文地址:http://blog.51cto.com/13569831/2308620