标签:logs 扩展 localhost 表示 文件 compile class 源代码 pil
[root@localhost ~]# cat 1.py # 要进行优化的源码文件
#!/usr/bin/python
print ‘Hello World‘
[root@localhost ~]# python -O -m py_compile 1.py # -O 表示优化,-m 表示模块
[root@localhost ~]# ll
total 8
-rw-r--r--. 1 root root 39 May 25 10:50 1.py
-rw-r--r--. 1 root root 112 May 25 10:58 1.pyo # 生成扩展名为 .pyo 的文件
标签:logs 扩展 localhost 表示 文件 compile class 源代码 pil
原文地址:http://www.cnblogs.com/pzk7788/p/7135777.html